Test your skills through the online practice test: JavaScript Quiz Online Practice Test

Related differences

Ques 51. Name the numeric constants representing max,min values?

Number.MAX_VALUE
Number.MIN_VALUE

Is it helpful? Add Comment View Comments
 

Ques 52. What does javascript null mean?

The null value is a unique value representing no value or no object.
It implies no object,or null string,no valid boolean value,no number and no array object.

Is it helpful? Add Comment View Comments
 

Ques 53. How do you create a new object in JavaScript?

var obj = new Object(); or var obj = {};

Is it helpful? Add Comment View Comments
 

Ques 54. How do you assign object properties?

obj["age"] = 17 or obj.age = 17.

Is it helpful? Add Comment View Comments
 

Ques 55. What’s a way to append a value to an array?

arr[arr.length] = value;

Is it helpful? Add Comment View Comments
 

Most helpful rated by users:

JavaScript vs JqueryJavaScript vs VBScriptJavaScript vs TypeScript