Home | History | Annotate | Download | only in resources

Lines Matching refs:Array

19             value       any JavaScript value, usually an object or array.
23 function or an array of strings.
64 If the replacer parameter is an array of strings, then it will be
66 such that only members with keys listed in the replacer array are
100 This method parses a JSON text to produce an object or array.
274 // If the type is 'object', we might be dealing with an object or an array or
286 // Make an array to hold the partial results of stringifying this object value.
291 // Is the value an array?
293 if (Object.prototype.toString.apply(value) === '[object Array]') {
295 // The value is an array. Stringify every element. Use null as a placeholder
315 // If the replacer is an array, use it to select the members to be stringified.
360 // that can replace values, or an array of strings that will select the keys.
382 // If there is a replacer, it must be a function or an array.