-
Math.E: numberES1Euler’s number, base of the natural logarithms, approximately 2.7182818284590452354.
-
Math.LN10: numberES1
None of the string methods modify this – they always return fresh strings.
-
charAt(pos: number): stringES1Returns the character at index
pos, as a string (JavaScript does not have a datatype for characters).str[i]is equivalent tostr.charAt(i)and more concise (caveat: may not work on old engines).