Javascript examples for Array:Quiz
Display the "HTML" item of the myArray array using the index number
<!DOCTYPE html> <html> <body> <p id="demo"></p> <script> var myArray = ["CSS", "HTML", "Javascript"]; document.getElementById("demo").innerHTML = myArray[1]; </script>/*from w w w . jav a 2 s. com*/ </body> </html>