1. const f2 = window.new("https://google.com");
2. const f2 = window.open("https://google.com");
3. const f2 = document.open("https://google.com");
4. const f2 = document.new("https://google.com");
const f2 = window.open("https://google.com");
1. const fruits = 1 = ("orange"), 2 = ("banana"), 3 = ("apple")
2. var fruits = (1:"orange", 2:"banana", 3:"apple")
3. var fruits = "orange", "banana", "apple"
4. var fruits = ["orange", "banana", "apple"]
var fruits = ["orange", "banana", "apple"]
1. const arr = new Array(10)
2. const arr[10]
3. const arr = array(10)
4. const arr(10)
const arr = new Array(10)
1. Math.floor((Math.random() * 5) + 4);
2. Math.floor((Math.random() * 4) + 4);
3. Math.floor((Math.random() * 4) + 5);
4. Math.floor((Math.random() * 5) + 5);
Math.floor((Math.random() * 5) + 5);
1. Any
2. As much as you want
3. One for each argument
4. One argument
One for each argument
1. text
2. a variable
3. an operator
4. a number
an operator
1. navigator.appName
2. browser.name
3. client.navName
4. window.appName
navigator.appName
1. X
2. Y
3. Z
4. false
Y
1.
2. >
3. =
4. !=
=
1. onkeypress
2. onkeydown
3. onclick
4. onfocus
onkeypress