Javascript Int16Array toString()

Introduction

The Javascript Int16Array toString() method returns a string representing the specified array and its elements.

This method works the same as Array.prototype.toString().

Int16Array.toString()
var numbers = new Int16Array([2, 5, 8, 1, 4])
console.log(numbers.toString());



PreviousNext

Related