1. 프로그래머스 JS
Lv0. 문자열 뒤집기
문자열 순서 바꾸기
하나의 문자열로 합치기

function solution(my_string) {
let a = []
for(let i=1; i<=my_string.length; i++){
let reverseA = (my_string[my_string.length-i])
a.push(reverseA)
}
return a.join("")
}
return my_string.split('').reverse().join('');var answer = [...my_string].reverse().join(""); 2. React Udemy 강의
Typescript + React - todolist
FC(functional component)

const Todos: React.FC<{ items: string[] }> = (props) =>Ref 사용
const todoTextInputRef = useRef<HTMLInputElement>(null);
!(exclamation mark)

?를 사용했을 땐 enteredText가 string|undefined로 나옴concat()

bind()
