*매우중요 javascript - concat, includes, indexOf, reverse, slice, splice
#javascript #1concat - merge arrays 1)기본준비 let A = [‘a’,’b’]; let B = [‘c’, ‘d’]; 2)concat이용하여 merge A.concat(B) 3)결과 A [‘a’,’b’,’c’,’d’] #2includes - look for a value 1) #1의 array가 들어있는 A리스트를 그대로 활용하자면 A.includes(‘b’); 2)결과 true python의 in과 같은 기능을 한다. #3indexOf- just like string.indexOf *내가 찾고자 하는 값이 있다면 몇번 인덱스에 있는지, 없다면 -1을 출력해준다. #1의 A리스트를 다시 활용하면 1) A.indexOf(‘c’) 결과 2 2) A.indexOf(‘g’) 결과 -..
2022. 12. 3.
*매우중요 MYSQL 문제풀이 - 테이블생성 (기본문법 보완필요) ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the ri ght syntax to use near '“employed”,
# 문제 Define an Employees table, with the following fields id - number(automatically increments), mandatory, primary key last_name - text, mandatory first_name - text, mandatory middle_name - text, not mandatory age - number mandatory current_status - text, mandatory, defaults to 'employed' # 내 답안 CREATE TABLE employees ( id INT NOT NULL AUTO_INCREMENT, last_name VARCHAR(30) NOT NULL, first_name ..
2022. 9. 22.