Total Questions:-92 Goto Page:
1
2 3 4 5 6 7 8 9 10
R4R ---> Articles--> JavaScript -->JavaScript Articles List
Page 1
Articles:
Are Java and JavaScript the Same?
Post Your View
ViewsNo.
Java and javascript are two different languages.
Java is a powerful object - oriented programming language like C++,C whereas Javascript is a c
For More
By:Rajesh Kumar
Date:
Articles:
Automatically opened the console when a JavaScript error occurs which of the following is added to prefs.js?
a. user_pref("javascript.console.open_on_error", true);
b. user_pref("javascript.console.open_error ", true);
c. user_pref("javascript.console.open_error ", false);
d. user_pref(" javascript.console.open_on_error", false);
Post Your View
Viewsa. user_pref("javascript.console.open_on_error", true);
For More
By:Aditya
Date:
Articles:
Can javascript code be broken in different lines?
Post Your View
ViewsBreaking is possible within a string statement by using a backslash \ at the end but not within any other javascript
statement.that is ,
document.wr
For More
By:Rajesh Kumar
Date:
Articles:
Choose the client-side JavaScript object?
A. Database
B. Cursor
C. Client
D. FileUpLoad
Post Your View
Views
By:Aditya
Date:
Articles:
Choose the server-side JavaScript object?
A. FileUpLoad
B. Function
C. File
D. Date
Post Your View
Views
By:Aditya
Date:
Articles:
Does javascript have the concept level scope?
Post Your View
ViewsNo. Javascript does not have block level scope,all the variables declared inside a function possess the same level of scope unlike c,c++,java.
For More
By:Rajesh Kumar
Date:
Articles:
First name of JavaScript is
a. Oak
b. Mocha
c. JScript
d. JSL
Post Your View
Views
By:Vivek
Date:
Articles:
How about 2+5+"8"?
Post Your View
ViewsSince 2 and 5 are integers, this is number arithmetic, since 8 is a string, it’s concatenation, so 78 is the result.
For More
By:Rajesh Kumar
Date:
Articles:
How can JavaScript make a Web site easier to use? That is, are there certain JavaScript techniques that make it easier for people to use a Web site?
Post Your View
Views JavaScript's greatest potential gift to a Web site is that scripts can make the page more immediately interactive, that is, interactive without havin
For More
By:Rajesh Kumar
Date:
Articles:
How do you assign object properties?
Post Your View
Viewsobj["age"] = 17 or obj.age = 17.
For More
By:Rajesh Kumar
Date:
Go:
1
2 3 4 5 6 7 8 9 10