Please enable JavaScript.
Coggle requires JavaScript to display documents.
Object - Coggle Diagram
Object
Method
freeze()
-
prevents from removing and prevents changing the enumerability, configurability, or writability of existing properties
-
-
-
-
-
Object.seal()
Preventing new properties from being added to it and marking all existing properties as non-configurable
-
-
-
-
Object.entries()
return an array of a given object's own enumerable string-keyed property [key, value] pairs
-
-
-
-
-
-
-
-
-
Theory
-
-
-
-
-
-
-
-
arguments object
is an Array-like object accessible inside functions that contains the values of the arguments passed to that function
object initializer
-
var initObject = { a: "John", b: 50, c: {} };
constructor method
The constructor method is a special method for creating and initializing an object created within a class.
-
-
Topic
-
Constructor, operator "new”
-
-
-
-
-
-
-
Tip
-
Copy Object
Object.assign()
-
Object.assign(target, ...sources);
-
-
-
-
-
-