Skip to main content

Posts

Showing posts with the label 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 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" />     < 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" : "Su...