Ajax & Javascript 정리
링크를 참고하여 작성했습니다. * JavaScript Object와 JSON //Array와 Object를 선언 후 console로 출력해 본다. DOCTYPE html>Insert title here /** * intro.js */var springColors = ["AF7575", "EFDBA1", "BCD693", "AFD7DB", "3D9CAB"];var tempreatures = [47.5, 63.2, 56.7, 53, 51.2];var pickles = { type: "cat", name: "Pickles", weight: 7};window.onload = init;function init() { console.log(springColors); console.log(tempratures); c..
2019. 1. 21.