Question: How do you convert string into integer number?
A
B
C
D
With strToInt() function
B
With parseInt() function
C
With parseFloat() function
D
None of above
Note: Not available
var a=["Lenny","Harold","Mary","Jean","Sal"]; alert(a.shift());
var computer=[“Dell”,”Gateway”,”Apple”,”IBM”,”HP”]; alert(computer.slice(2,4));
for(i=0;i<4;i++){ } alert(++i);
var x=3; var y=x>4?3:5; alert(x+y);
var x=10; x*=4; x++; x-=3; alert(x);
var str=”IDB-BISEW ROUND-13”; alert(str.indexOf(‘E’));
var str=”IDB-BISEW ROUND-13”; alert(str.length);