Javascript BigUint64Array toString()

Introduction

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

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

BigUint64Array.toString()
var numbers = new BigUint64Array([12n, 5n, 8n, 130n, 44n])
console.log(numbers.toString());



PreviousNext

Related