JavaScript typed arrays - JavaScript | MDN
JavaScript typed arrays are array-like objects that provide a mechanism for reading and writing raw binary data in memory buffers.To achieve maximum flexibility and efficiency, JavaScript typed arrays split the implementation into buffers and views. A buffer (implemented by the ArrayBuffer object) is an object representing a chunk of data; it has no format to speak of and offers no mechanism for accessing its contents. In order to access the memory contained in a buffer, you need to use a view. A view provides a context — that is, a data type, starting offset, and the number of elements — that turns the data into a typed array.
ArrayBuffer - JavaScript | MDN
How to convert ArrayBuffer to and from String | Web @developers.google
No comments:
Post a Comment