Loading...

Guess the Output in JavaScript Problem-65 | JavaScript Questions #jsprogramming

10 0________

The output of the JavaScript code console.log(Array.isArray("Hello, World!")); will be B) false.

Explanation:

The Array.isArray() method in JavaScript is used to check if a given value is an array. In this case, it's checking if the string "Hello, World!" is an array, which is false.
So, the correct output is false.

コメント