VOOZH about

URL: https://www.geeksforgeeks.org/javascript/javascript-es5-js-2009/

⇱ JavaScript ES5 (JS 2009) - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

JavaScript ES5 (JS 2009)

Last Updated : 23 Jul, 2025

JavaScript 2009 (ES5) refers to the fifth edition of the ECMAScript language specification, standardized in 2009. It introduced several features, like strict mode, new methods, JSON support, and improved syntax for better programming practices and compatibility across browsers.

ECMAScript 5 (ES5) introduced several significant features to JavaScript, enhancing the language's capabilities.

Name

Description

use strict

Enforces stricter parsing and error handling in JavaScript code.

String.trim()

Removes whitespace from the beginning and end.

Multiline strings

Use backslashes at the end of each line to continue.

Array.isArray()

Check if an object is an array.

Array.forEach()

Iterates over array elements, applying a provided function.

Array.map()

Transforms each array element using a provided function.

Array.filter()

Creates a new array with elements passing a test.

Array.reduce()

Combines an array of elements to produce a single result.

Array.reduceRight()

Combines array elements from right to left.

Array.every()

Checks if all elements satisfy a given condition.

Array.some()

Checks if any element satisfies a given condition.

Array.indexOf()

Returns the index of a specified element.

Array.lastIndexOf()

Returns the last index of a specified element.

JSON.parse()

Converts JSON string to JavaScript object.

JSON.stringify()

Converts JavaScript object to JSON formatted string.

Date.now()

Returns the current timestamp in milliseconds since 1970.

Date toISOString()

Converts date to ISO 8601 format string.

Date toJSON()

Converts date to JSON-formatted string (ISO 8601).

Property Getters and Setters

Control object property access and modification behavior.

Object.defineProperty()

Defines or modifies a property's attributes on an object.

Object.defineProperties()

Defines or modifies multiple properties' attributes on an object.

Object.getOwnPropertyDescriptor()

Gets attributes of a property from an object.

Object.keys()

Returns an array of enumerable property names in object.

Object.getOwnPropertyNames()

Returns an array of all property names in object.

Object.preventExtensions()

Prevents adding new properties to an object.

Object.isExtensible()

Checks if new properties can be added.

Object.seal()

Prevents new properties and makes existing non-configurable.

Object.isSealed()

Checks if object properties are non-configurable and sealed.

Object.freeze()

Prevents adding, modifying, and makes properties non-writable.

Object.isFrozen()

Checks if object properties are non-writable, non-configurable, and frozen.

Here is the explanation of above-mentioned topic

Method 1: use strict

The use strict enforces strict mode in JavaScript, catching errors and promoting better coding practices. It's used at the beginning of scripts or functions.

Syntax:

// Whole-script strict mode syntax
'use strict';
let v = "strict mode script!";

Example: In this example we are using the above-explained method.

Output:

ReferenceError: result is not defined

Method 2: String.trim() Method

JavaScript String trim() method is used to remove the white spaces from both ends of the given string.

Syntax:

str.trim()

Example: In this example we are using the above-explained method.


Output
GeeksforGeeks

Method 3: Multiline Strings

In ES5, multiline strings can be created using backslashes at the end of each line to continue, combined with + for concatenation, to form a single string across lines.

Syntax:

line one\n\
line two\n\

Example: In this example we are using backslashes and + to write Multiline strings.


Output
GeeksforGeeks A computer science Portal.
GeeksforGeeks

Method 4: Array Methods (Array.isArray(), Array.map(), Array.filter(), and Array.reduce() Methods)

  • The Array.isArray() method checks if a value is an array or not and returns true or false.
  • The Array.map() method transforms each element in an array using a provided function, returning a new array.
  • Array.filter() method creates a new array with elements that satisfy a condition set by a function.
  • The Array.reduce() method reduces array to a single value by executing a function with accumulator.

Syntax:

Array.isArray(obj) 
map((element) => { /* … */ })
array.filter(callback(element, index, arr), thisValue)
array.reduce( function(total, currentValue, currentIndex, arr), initialValue )

Example: In this example we are using the above-explained methods.


Output
Is 'numbers' an array? true
doubling each elemen of our array : [ 2, 4, 6, 8, 10 ]
Even numbers from the array: [ 2, 4 ]
Sum of all elements in the array: 15

Method 5: JSON.parse() Method

The JSON.parse() method is a JavaScript method that converts a JSON string into a JavaScript object.

Syntax:

JSON.parse( string, function )

Example: Here is the basic example of JSON.parse() method.


Output
Aman
21
Noida

Method 6: JSON.stringify() Method

JSON.stringify() is a JavaScript method that converts a JavaScript object into a JSON string for data serialization and storage.

Syntax:

JSON.stringify(value, replacer, space);

Example: In this example we are using JSON.stringify().


Output
value of result = {"Company":"GeeksforGeeks","Estd":2009,"location":"Noida"}

Date Methods (Date.now(),Date toISOString() and Date toJSON() Methods)

  • Date.naw() method used to return the number of milliseconds elapsed since January 1, 1970, 00:00:00 UTC.
  • Date toISOString() converts a date to an ISO 8601 format string (e.g., "YYYY-MM-DDTHH:mm:ss.sssZ").
  • Date toJSON() method converts the given date object’s contents into a string.

Syntax:

let A = Date.now(); // Date.now()
dateObj.toISOString() // Date toISOString()
dateObj.toJSON() // Date toJSON()

Example: In this example we are using the abobe-explained methods.


Output
Timestamp: 1698213643835
ISO String: 2023-10-25T06:00:43.835Z
JSON Date: 2023-10-25T06:00:43.835Z

Method 7: Property Getters and Setters

In ECMAScript 5 (ES5), property getters and setters enable defining custom behavior when reading (get) or modifying (set) object properties, enhancing encapsulation and control over property access.

Example: In this example we are using the above-explained approach.


Output
John Doe
Jane
Smith

Method 8: New Object Property Methods

ECMAScript 5 introduced new object methods

It enhance the object property control, definition, and manipulation.

Syntax:

Object.defineProperty(obj, prop, descriptor) // Object.defineProperty()
Object.defineProperties(obj, props) // Object.defineProperties()
Object.getOwnPropertyDescriptor( obj, prop ) // Object.getOwnPropertyDescriptor()
Object.keys(obj); // Object keys() Method

Example: In this example we are some mentioned method.


Output
Property Names: [ 'name', 'age', 'gender' ]
All Property Names: [ 'name', 'age', 'gender' ]
Is Extensible: false
Is Sealed: true
Is Frozen: true
{ name: 'Ankit', age: 21, gender: 'Male' }
Comment