Skip to content

Instantly share code, notes, and snippets.

@furugomu
Last active August 29, 2015 14:16
Show Gist options
  • Save furugomu/1bee90f6be924561643f to your computer and use it in GitHub Desktop.
Save furugomu/1bee90f6be924561643f to your computer and use it in GitHub Desktop.
ECMAScript 5 で増えたもの
Global:
- JSON
Object:
- getPrototypeOf()
- geOwnPropertyDescriptor()
- geOwnPropertyNames()
- create()
- defineProperty()
- defineProperties()
- seal()
- freeze()
- preventExtensions()
- isSealed()
- isFroozen()
- isExtensible()
- keys()
Function:
- prototype:
- bind()
- instance:
- "[[Get]]()"
Array:
- isArray()
- prototype:
- indexOf()
- lastIndexOf()
- every()
- some()
- forEach()
- map()
- filter()
- reduce()
- reduceRight()
- instance:
- "[[DefineOwnProperty]]()"
String:
- prototype:
- trim()
- instance:
- "[[GetOwnProperty]]()"
Date:
- now()
- prototype:
- toISOString()
- toJSON()
JSON:
- parse()
- stringify()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment