var 보지 = [];보지.push(1,2,3);console.log(보지);보지.reverse();console.log(보지);[ 1, 2, 3 ][ 3, 2, 1 ]이상 강의를 마친다.
댓글 0