Javascript BigInt64Array toString()

Introduction

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

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

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



PreviousNext

Related