JavaScript Array Question 3

Introduction

What is the output of the following code?


let myArray = ["hello", "new", "world"];

console.log( myArray.length );  // 3


3



PreviousNext

Related