Skip to content

Instantly share code, notes, and snippets.

View bojjakaseenadhreddy's full-sized avatar
💻
Looking for an software engineer roles

Kasee bojjakaseenadhreddy

💻
Looking for an software engineer roles
  • United States, Texas
View GitHub Profile
@bojjakaseenadhreddy
bojjakaseenadhreddy / var-example.js
Last active April 3, 2022 09:18
How to declare and use var in JavaScript.
var userName;
var email = 'test@gmail.com';
console.log(userName); // undefined
console.log(email); // test@gmail.com
var email = 'newtest@gmail.com';
/**
No comiler issue for the above line,
even we are declaring the variable with same name i.e email
@bojjakaseenadhreddy
bojjakaseenadhreddy / common-currencies.json
Last active August 1, 2021 10:20 — forked from ksafranski/Common-Currency.json
list of available currencies
[ {
"symbol": "$",
"name": "US Dollar",
"symbol_native": "$",
"decimal_digits": 2,
"rounding": 0,
"code": "USD",
"name_plural": "US dollars"
},