Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
TypedArray.toString() function in JavaScript
The toString() function of the TypedArray object returns a string representing the contents of the typed array.
Syntax
Its Syntax is as follows
typedArray.toString();
Example
<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>
Output
Contents of the typed array: 111,56,62,40,75,36,617,2,139,827
Advertisements