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 url link http://embed.plnkr.co/cLywys7LszvXczJghldN/preview
The
Live demo code-sample for Pass JSON into JavaScript Array
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<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>
The output link http://embed.plnkr.co/cLywys7LszvXczJghldN/preview