You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Internal functions are built in to the language and implemented in Go.
Number methods
num.format([str]) — uses the given format string to format the number (returns string). If no argument is given, automatically uses the fewest sigfigs.
Object methods
obj.get("key") — gets the value for the given key
obj.set("key", value) — sets the value for the given key
obj.keys() — returns a list of keys as strings
obj.values() — returns a list of the values
obj.pairs() — returns a 2D array of key-value pairs
The text was updated successfully, but these errors were encountered:
Internal functions are built in to the language and implemented in Go.
Number methods
Object methods
The text was updated successfully, but these errors were encountered: