Correct Answer : A
Realated Questions
Which built-in method reverses the order of the elements of an array?
Predict the output of the following JavaScript code.
var a = "javascript"; var result = a.substring(2, 3); document.write(result);
What will be the output of the following code snippet?
console.log(parseInt("123Hello")); console.log(parseInt("Hello123"));