[tmax 과제] TmaxAI의 ChatBot서비스 HyperChatbot


[tmax 과제] TmaxAI의 ChatBot서비스 HyperChatbot

eslint : coding style 정의 가능??? scsss 데이터 보관 : #{ } js 데이터 보관 : ${ } ` (백텟) const s = "Hello"; const w = `hello ${s}`; const z = 'Hello ' + s; // 구식표현, 이 표현보다는 위의 백텟을 사용한 표현을 권장한다. const n = Infinity; // infinity는 숫자 데이터 null : 값이 null undefined : 값을 지정하지 않은 상태 객체 데이터 const user = { name: 'hello', // property: data 형식 age: 20 }; cosole.log(user.name); console.log(user['age']); 배열 데이터 const fruits..


원문링크 : [tmax 과제] TmaxAI의 ChatBot서비스 HyperChatbot