javascript int size code example
Example 1: javascript int max
console.log(Number.MAX_SAFE_INTEGER);
// expected output: 9007199254740991
Example 2: js data types
//There are 7 data types in JS
//They're split in two categories - (Primitives and Complex Types)
//Primives
string, number, boolean, null, undefined
//Complex types
Object, Function