Table of Contents
Ceil
5
Charat
9
var str = "9971486942";
var charPosition = 9;
if (charPosition >= 0 && charPosition < str.length) {
var char = str.charAt(charPosition - 1);
document.write(char);
} else {
document.write("Position out of range");
}
Charcode
A
CharCodeAt
65
90
Concatenate
sanjayjain
sanjay jain
Floor
4
IndexOf
2
LastIndexOf
12
length
8
Lower case
hello world!
Not a Number
plz enter (a-z)
PI
3.141592653589793
Round
4
Upper case
HELLO WORLD!