TypedArray 객체의 toString() 함수는 입력된 배열의 내용을 나타내는 문자열을 반환합니다.
구문
구문은 다음과 같습니다.
typedArray.toString();
예시
<html> <head> <title>JavaScript Example</title> </head> <body> <script type="text/javascript"> var typedArray = new Int32Array([111, 56, 62, 40, 75, 36, 617, 2, 139, 827 ]); var result = typedArray.toString(); document.write("Contents of the typed array: "+result); </script> </body> </html>
출력
Contents of the typed array: 111,56,62,40,75,36,617,2,139,827