작성
·
187
0
ES6 문법 문제 1번 문제를 replit으로 하니깐
let name="noona's fruit store" let fruits = ["banana","apple","mango"] let location="Seoul" let store = {name, fruits, location} console.log(store)
요렇게 하니
var name ="nonna's fruit store";
var fruits =["banana","apple","mango"];
var loca ="Seoul";
var store = {name, fruits, loca}
console.log(store)
답변 1
1
안녕하세요
예전에도 같은 질문을 해주신 분이 계셨는데
location이 이미 시스템에서 사용하고있는 예약어 입니다
따라서 location이라는 변수명을 안써주시면 됩니다.
address나 다른 이름으로 바꾸시면 더 좋을것 같네요!