0% found this document useful (0 votes)
6 views1 page

Multi Di

The document is an HTML file that includes a JavaScript snippet. The script defines a 2D array and writes the first element of the second row to the document. The output of the script will be the number '4'.

Uploaded by

Shruti Shevade
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
6 views1 page

Multi Di

The document is an HTML file that includes a JavaScript snippet. The script defines a 2D array and writes the first element of the second row to the document. The output of the script will be the number '4'.

Uploaded by

Shruti Shevade
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 1

<!

DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<script>
let a=[[1,2,3],[4,5,6],[7,8,9]];
document.write(a[1][0]);
</script>
</body>
</html>

You might also like