JSON.parse
2020.05.05
결국 JSON파일을 가지고 우리가 해야하는것은 JS에서 JSON파일의 데이터를 불러와 처리하는것이다. 아래는 가장 기본적인 JSON파일의 형태를 가지고 JS에서 불러오는법이다. let companies = [ { name: "Big Corporation", numberOfEmployees: 10000, ceo: "Mary", rating: 3.6, }, { name: "Small Startup", numberOfEmployees: 3, ceo: null, rating: 4.3, } ]; console.log(companies); 하지만 위의 compaines 변수를 문자형으로 바꾸게 되면 정상적으로 불러올수가없다. let companies = '[ { name: "Big Corporation", numb..