Syed Sadiq Ali
Discover What's Possible
Pages
C#
.Net Basics
SQL
JavaScript
AngularJS
Online Test
Popular Posts
Learn .Net Easily
Angular 1 vs Angular 2
AngularJS Test
Tuesday, 22 November 2016
JAVASCRIPT Test2
JavaScript
How do you create a function in JavaScript?
function:myFunction()
function myFunction()
function = myFunction()
How do you write "Hello World" in an alert box?
alert("Hello World");
msg("Hello World");
alertBox("Hello World");
How do you call a function named "myFunction"?.
myFunction()
call function myFunction()
call myFunction()
How to write an IF statement in JavaScript?
if i = 5
if (i == 5)
if i = 5 then
How to write an IF statement for executing some code if "i" is NOT equal to 5?
if (i <> 5)
if i =! 5 then
if (i != 5)
How does a WHILE loop start?
while i = 1 to 10
while (i <= 10; i++)
while (i <= 10)
What is the correct way to write a JavaScript array?
var colors = "red", "green", "blue"
var colors = (1:"red", 2:"green", 3:"blue")
var colors = ["red", "green", "blue"]
Which operator is used to assign a value to a variable?
=
*
/
Boolean(10 > 9)
True
False
None
Is JavaScript case-sensitive?
Yes
No
May be
No comments:
Post a Comment
Newer Post
Older Post
Home
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment