The Wayback Machine - https://web.archive.org/web/20230713001029/https://www.geeksforgeeks.org/javascript-array-from-method/amp/

JavaScript Array from() Method

The JavaScript Array from() method returns an Array object from any object with a length property or an iterable object. 

Syntax : 

Array.from(object, mapFunction, thisValue)

Parameters:

Return Value: It returns an array object. 

Example 1: In this example, we will be using Array from() method to create an array from the string value.




let myArr = Array.from(
    "GeeksForGeeks");
console.log(myArr);
Output
[
  'G', 'e', 'e', 'k',
  's', 'F', 'o', 'r',
  'G', 'e', 'e', 'k',
  's'
]

Example 2: In this example, we will be using Array from() method to create an array from the string value.




let myArr = Array.from("45878965412365");
 
console.log(myArr);
Output
[
  '4', '5', '8', '7',
  '8', '9', '6', '5',
  '4', '1', '2', '3',
  '6', '5'
]

 We have a complete list of Javascript Array methods, to check those please go through this Javascript Array Complete reference article.

Supported Browsers:

We have a Cheat Sheet on Javascript where we covered all the important topics of Javascript to check those please go through Javascript Cheat Sheet-A Basic guide to JavaScript.

Article Tags :