w3resource

JavaScript: Core Objects

JavaScript : Core Objects

List of JavaScript core objects

Name of the object Version
Array Object Implemented in JavaScript 1.1
Boolean Object Implemented in JavaScript 1.1
Date Object Implemented in JavaScript 1.0
Function Object Implemented in JavaScript 1.1
Java Implemented in JavaScript 1.2
JavaArray Implemented in JavaScript 1.1
JavaClass Implemented in JavaScript 1.1
Java Implemented in JavaScript 1.1
JavaPackage Implemented in JavaScript 1.1
Math Object Implemented in JavaScript 1.0
netscape Implemented in JavaScript 1.1
Number Object Implemented in JavaScript 1.1
Object Implemented in JavaScript 1.0
Packages Implemented in JavaScript 1.1
RegExp Object Implemented in JavaScript 1.2
String Object Implemented in JavaScript 1.0
sun Implemented in JavaScript 1.1

Previous: JavaScript Object
Next: Javascript Array Objects - Properties and Methods

Test your Programming skills with w3resource's quiz.



Follow us on Facebook and Twitter for latest update.

JavaScript: Tips of the Day

Reduce method

[1, 2, 3, 4].reduce((x, y) => console.log(x, y));

The first argument that the reduce method receives is the accumulator, x in this case. The second argument is the current value, y. With the reduce method, we execute a callback function on every element in the array, which could ultimately result in one single value.
In this example, we are not returning any values, we are simply logging the values of the accumulator and the current value.
The value of the accumulator is equal to the previously returned value of the callback function. If you don't pass the optional initialValue argument to the reduce method, the accumulator is equal to the first element on the first call.
On the first call, the accumulator (x) is 1, and the current value (y) is 2. We don't return from the callback function, we log the accumulator and current value: 1 and 2 get logged.
If you don't return a value from a function, it returns undefined. On the next call, the accumulator is undefined, and the current value is 3. undefined and 3 get logged.
On the fourth call, we again don't return from the callback function. The accumulator is again undefined, and the current value is 4. undefined and 4 get logged.

Ref: https://bit.ly/323Y0P6

 





We are closing our Disqus commenting system for some maintenanace issues. You may write to us at reach[at]yahoo[dot]com or visit us at Facebook