What would the browser output if the following script is executed?

```
< SCRIPT LANGUAGE = "JavaScript" >
var array = [ [ 1, 2, 3 ], [ 1, 2, 3 ] ];
for ( var i in array ) {
for ( var j in array[ i ] )
document.write( array[ i ][ j ] + " " );

document.writeln("
");
}
< /SCRIPT >
```

a) Nothing, the script would generate an error
b) 1 2 3
c) 1 2 3 4 5 6
d) 1 2 3 1 2 3


d) 1 2 3 1 2 3

Computer Science & Information Technology

You might also like to view...

With C++11 and higher what data type can you use to guarantee that 32 bits will be used to store a signed integer?

What will be an ideal response?

Computer Science & Information Technology

When text is copied from a location in a Word document, it is removed from its original location

Indicate whether the statement is true or false

Computer Science & Information Technology

Subsites must be deleted before the top-level SharePoint site can be deleted

Indicate whether the statement is true or false

Computer Science & Information Technology

MySQL version 4.1 supports views.

Answer the following statement true (T) or false (F)

Computer Science & Information Technology