Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.
The readonly ImageData.data property returns a Uint8ClampedArray representing a one-dimensional array containing the data in the RGBA order, with integer values between 0 and 255 (included).
Syntax
imagedata.data
Example
var imagedata = new ImageData(100, 100);
imagedata.data; // Uint8ClampedArray[40000]