All Stories

[면접] 면접 연습1

질문 내용

[Algorithm] 124 나라의 숫자

[프로그래머스] 124 나라의 숫자

4주 프로젝트 시작

4주 프로젝트 시작

MVC pattern

MVC Pattern (Model, View, Controller)

Sequelize delete data

Sequelize delete data

Sequelize Operators for security

Sequelize Operators for security [Op.regexp]: ‘^[h|a|t]’ // REGEXP/~ ‘^[h|a|t]’ (MySQL/PG only) [Op.notRegexp]: ‘^[h|a|t]’ // NOT REGEXP/!~ ‘^[h|a|t]’ (MySQL/PG only) Op.like: { [Op.any]: [‘cat’, ‘hat’]} // LIKE ANY ARRAY[‘cat’, ‘hat’] -...