분류 전체보기378 type checking const string = `node.js` const array = [] const obj = {} console.log(typeof array) 2020. 1. 10. template string const details = `test` let str = `node.js` str += `world ${details}` 2020. 1. 10. string let string = 'node.js' let isStartWith = string.startWith('n') let isIncludes =string.includes('node') let isEndWith = string.endWith('d') const checkIfContains = () => { if(isStartWith && isIncludes && isEndWith){ return true } } const ret = checkIfContains() 2020. 1. 10. static method class test { constructor() { this.config = {} } fn () { } static call(){ //생성자 클래스를 생성하지 않고 직접 호출 가능한 함수 //생성자에 선언된 자원에는 접근 불가능함. console.log('static method') } } //사용 test.call() 2020. 1. 10. some //한가지 이상의 조건을 만족하면 true 를 반환하는 메서드 const arr = [1,2,0,-1,-2] const res = arr.some(key => key < 0) //출력 결과는 true 2020. 1. 10. has //존재하는지 체크 const test = Set() test.add(2) const ret = test.has(2) //출력은 true 2020. 1. 10. 이전 1 ··· 15 16 17 18 19 20 21 ··· 63 다음