Back to functions

nerdamer.reserved


reserved

Gets the list of reserved names. This is a list of names already in use by nerdamer excluding variable names. This is not a static list. Although some variables are reserved they are not restricted and can be used. This however is not recommended.

Usage: nerdamer.reserved(asArray)


Parameters

bool asArray Pass in true to get the list back as an array instead of as an object.

Returns

String[] | Object

EXAMPLES:
var x = nerdamer.reserved();
console.log(x);
var y = nerdamer.reserved(true);
console.log(y);
OUTPUT:
Back to functions