Technical Support Fundamentals _week 1
-IT information technology The use of digital technology, like computers and the Internet, to store and process data into useful information -education, medicine, journalism, construction, transportation, entertainment, any industry -digital divide -IT support specialist's work Making sure that an organization's technological equipment is running smoothly. Including managing, installing, maintai..
2022. 1. 18.
211228
-객체 명함 더 간단하게 let 명함 = { 이름: "개구리", 나이: 20, 직업: "개발자", 출력() { console.log("이름: " + this.이름) //this 아주 중요 console.log("나이: " + this.나이) } } 명함.출력() -수산시장 만들기 배열과 반복문 -pop, push 함수,함수의 반환값, 스택 자료구조 let 택배들 = [] >undefined 택배들.push("아이패드") >1 택배들 >['아이패드'] 택배들.push("햇반") >2 택배들.push("생수") >3 택배들.push("피아노") >4 택배들 >(4) ['아이패드', '햇반', '생수', '피아노'] 택배들.pop() >'피아노' 택배들 >(3) ['아이패드', '햇반', '생수'] let 택..
2021. 12. 29.