자바스크립 배열
기본적인 배열
let arr=[1,가,true];
호출방법
-전체호출
<script>
let arr=[1,가,true];
document.write(arr);
</script>
-특정배열호출 ( ex>3번째 배열을 호출하엿다. )
<script>
let arr=[1,가,true];
document.write(arr[2]);
</script>
-->true호출됨
Author And Source
이 문제에 관하여(자바스크립 배열), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@kdw0247/자바스크립-배열저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)