<div class="codetitle"> <span><a style="CURSOR: pointer" data="27499" class="copybut" id="copybut27499" onclick="doCopy('code27499')"><u>코드 복사</u></a></span> 코드는 다음과 같습니다.</div> <div class="codebody" id="code27499"> <br>var array = new Array(["no1"," no2"] ); <br>array["po"] = "props1"; <br>alert(array[0][0]); <br>alert(array.length); //2 <br>/ /배열의 경우 일반적으로 array[0]은 array["0"]과 동일한 효과를 갖습니다. (? 확실하지 않습니다. 테스트 중에는 그렇습니다.) <br>alert(array[0] "_" array["1"] "_" 배열.po);// <br> </div>