본문 바로가기

잡단한것들/코딩연습장

문자열 더하기

function text(i) {
    let newText = 'hello';
    newText += i
    return console.log(newText)
}
 
text('world');

'잡단한것들 > 코딩연습장' 카테고리의 다른 글

lodash를 이용한 scroll 이벤트  (0) 2021.05.20
AxBoot 참고  (0) 2021.05.11
jQuery  (0) 2021.04.20
.edtiorconfig  (0) 2021.04.13
css 테두리 겹치기 꼼수  (0) 2021.02.18