Pass JSON into JavaScript Array

Pass JSON into JavaScript Array

The JavaScript/jQuery code-sample

var students = [];
var studentsJSON = [{ "name": "Anil" }, { "name": "Sunil " }, { "name": "Sushil" }];

//The for each of data.
studentsJSON.forEach(function (item) {
    students.push(item.name);
});

alert(JSON.stringify(students));


The Live demo code-sample for Pass JSON into JavaScript Array

<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8" />
    <title>Pass JSON intoJavaScript Array</title>
    <script src="http://code.jquery.com/jquery-2.1.4.min.js"></script>
    <script>
        var students = [];
        var studentsJSON = [{ "name": "Anil" }, { "name": "Sunil " }, { "name": "Sushil" }];  

        //The for each of data.
        studentsJSON.forEach(function (item) {
            students.push(item.name);
        });

        alert(JSON.stringify(students));
    </script>
</head>
<body>
    <h1>Pass JSON into JavaScript Array</h1>
</body>
</html>




ANIL SINGH

Anil Singh is an author, tech blogger, and software programmer. Book writing, tech blogging is something do extra and Anil love doing it. For more detail, kindly refer to this link..

My Tech Blog - https://www.code-sample.com/
My Books - Book 1 and Book 2

Pass JSON into JavaScript Array Pass JSON into JavaScript Array Reviewed by Anil Singh on 1:00 AM Rating: (5)
www.code-sample.com/. Powered by Blogger.
^