본문 바로가기
카테고리 없음

js

by sj0020 2021. 7. 15.

a = [1,2];
b =  a;
a.push(3);
console.log(b);