Correct Answer : A
Realated Questions
What output will come if we run the following part of the JavaScript code?
const string2Num = parseInt("123abc"); console.log(string2Num);
Which of the following given functions of the Number Object formats a number with a different number of digits to the right of the decimal?
What will be the output of the following code snippet?
const set = new Set(); set.add(5); set.add('Hello'); set.add({ name: 'Scaler' }); for (let item of set) { console.log(item + 6); }