본문 바로가기

JS/learned_it_today

객체 - 반복문과 객체

  <h1>Object</h1>
    <h2>Create</h2>
    <script>
      var coworkers = {
        programmer: "egoing",
        designer: "leezche",
      };
      document.write("programmer: " + coworkers.programmer + "<br>");
      document.write("designer: " + coworkers.designer + "<br>");
      coworkers.bookkeeper = "duru";
      coworkers["data scientist"] = "taeho";

      document.write("bookkeeper: " + coworkers.bookkeeper + "<br>");
      document.write("data scientist: " + coworkers["data scientist"] + "<br>");
    </script>

    <h2>Iterate</h2>
    <script>
      for (var key in coworkers) {
        document.write(key + ":" + coworkers[key] + "<br>");
      }
    </script>

 

파이썬 반복문과 비슷해서 다행히 이해하기 어렵지 않았다.

 

 

'JS > learned_it_today' 카테고리의 다른 글

함수 - return, 계산기  (0) 2020.05.20
객체 - Property and Method  (0) 2020.05.19
객체 - 쓰기와 읽기  (0) 2020.05.19
배열과 반복문 활용  (0) 2020.05.19
배열과 반복문  (0) 2020.05.19