<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>
'JS > learned_it_today' 카테고리의 다른 글
객체 - Property and Method (0) | 2020.05.19 |
---|---|
객체 - 반복문과 객체 (0) | 2020.05.19 |
배열과 반복문 활용 (0) | 2020.05.19 |
배열과 반복문 (0) | 2020.05.19 |
조건문의 활용 + refactoring (0) | 2020.05.19 |