# Base Library
# console
The console.log method is used to output messages in the console window. This method can accept multiple parameters and concatenate their results for output.
# Math
# Properties
ELN10LN2LOG2ELOG10EPISQRT1_2SQRT2
For information on using the above properties, refer to the
ES5standard.
# Methods
absacosasinatanatan2ceilcosexpfloorlogmaxminpowrandomroundsinsqrttan
For information on using the above methods, refer to the
ES5standard.
# JSON
# Methods
stringify(object): Converts theobjectobject into aJSONstring and returns the string.parse(string): Converts theJSONstring into an object and returns the object.
Sample code:
console.log(undefined === JSON.stringify());
console.log(undefined === JSON.stringify(undefined));
console.log("null"===JSON.stringify(null));
console.log("111"===JSON.stringify(111));
console.log('"111"'===JSON.stringify("111"));
console.log("true"===JSON.stringify(true));
console.log(undefined===JSON.stringify(function(){}));
console.log(undefined===JSON.parse(JSON.stringify()));
console.log(undefined===JSON.parse(JSON.stringify(undefined)));
console.log(null===JSON.parse(JSON.stringify(null)));
console.log(111===JSON.parse(JSON.stringify(111)));
console.log("111"===JSON.parse(JSON.stringify("111")));
console.log(true===JSON.parse(JSON.stringify(true)));
console.log(undefined===JSON.parse(JSON.stringify(function(){})));
# Number
# Properties
MAX_VALUEMIN_VALUENEGATIVE_INFINITYPOSITIVE_INFINITY
For information on using the above properties, refer to the
ES5standard.
# Date
# Properties
parseUTCnow
For information on using the above properties, refer to the
ES5standard.
# Global
# Properties
NaNInfinityundefined
For information on using the above properties, refer to the
ES5standard.
# Methods
parseIntparseFloatisNaNisFinitedecodeURIdecodeURIComponentencodeURIencodeURIComponent
For information on using the above methods, refer to the
ES5standard.