CSE :: Javascript - CS
- The object has three object attributes namely
-
Consider the following code snippet :
var book = {
"main title": "JavaScript",
'sub-title': "The Definitive Guide",
"for": "all audiences",
author: {
firstname: "David",
surname: "Flanagan"
}
};
In the above snippet, firstname and surname are
- A linkage of series of prototype objects is called as :
-
Consider the below given syntax
book[datatype]=assignment_value;
In the above syntax, the datatype within the square brackets must be
- To determine whether one object is the prototype of (or is part of the prototype chain of) another object, one should use the
-
Consider the following code snippet
function f() {};
The above prototype represents a
- The purpose of extensible attribute is to
-
Identify the process done in the below code snippet
o = {x:1, y:{z:[false,null,""]}};
s = JSON.stringify(o);
p = JSON.parse(s);
- The basic purpose of the toLocaleString() is to