목록인프런 (3)
영원히 흘러가는 강
String 에 새로운 메서드들! startsWith 와 endsWith, includes 가 있다 let str="ryu is last name"; let matchstr="ryu"; console.log(str.startsWith(matchstr)); // ryu로 시작하여 true let matchstr2="name"; console.log(str.endsWith(matchstr2)); // name으로 끝나는게 맞으므로 true let matchstr3="first name"; console.log(str.includes(matchstr3)); // first name 포함하지 않으므로 false 배열 순회하기 for of for in의 문제점 보완하였다. let arr=[1,2,3,"hi","h..
ECMAScript 의 필요성과 수강 후기 자바스크립트가 다양한 웹 브라우져들의 지원을 받으면서 공통되게 잘 작동하기 위해 표준이 만들어진다. 그 중 가장 중요한 변화를 겪은 ES6 의 수강 후기이다. www.inflearn.com/course/es6-%EA%B0%95%EC%A2%8C-%EC%9E%90%EB%B0%94%EC%8A%A4%ED%81%AC%EB%A6%BD%ED%8A%B8# 모던 자바스크립트(javascript) 개발을 위한 ES6 강좌 - 인프런 자바스크립트 표준 ECMAScript! 큰 변화가 있었고, 모던 자바스크립트의 축이 되는 ES2015 (ES6) 를 학습하는 강좌 입니다. 이 강좌는 전체내용을 교과서적으로 자세히 설명하는 방식이 아닌, 각 feature www.inflearn.com..
스프링 부트 라이브러리 spring-boot-starter- webspring-boot-starter-tomcat : 톰캣 spring-webmvc: 스프링 웹 mvc spring-boot-starter-thymeleaf: 타임리프 템플릿 엔진(view) spring-boot-starter : 스프링 부트+ 스프링 코어+ 로깅 spring-boot spring-core spring-boot-starter-logging :로깅 logback,slf4j 테스트 라이브러리 spring-boot-starter-test junit mockito assertj