Skip to content

Instantly share code, notes, and snippets.

@psiborg
Created January 6, 2012 08:29
Show Gist options
  • Select an option

  • Save psiborg/1569698 to your computer and use it in GitHub Desktop.

Select an option

Save psiborg/1569698 to your computer and use it in GitHub Desktop.
JS Variables
var myInt = 0,
myFloat = 0.99,
myOct = 0123, // 83
myHex = 0xFFF, // 4095
myBigExp = 9.8e6, // 9800000
mySmallExp = 9.8e-6, // 0.0000098
myMax = Number.MAX_VALUE, // 1.7976931348623157e+308
myMin = Number.MIN_VALUE, // 5e-324
myStr = "Hello",
myBool = false,
myArr = [
"a",
"b",
"c"
],
myFunc = function () {
return 42;
},
myObj = {
debug: false
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment