Static Method โ Method attach to Constructor Function (NOT Delegate via __proto__)
staticโ
JS Keyword to define Static Method/property for class
Instance Methodโ
Method to Delegate via __proto__
Array.from()
Referencesโ
Object.create()โ Static Method to manually link Object to another as__proto__JSONโ Global Object API to acccess Static Method to convert/parse JSONassert.equal()โ !legacyassertStatic Method to test==loose equalityassert.deepEqual()โassertStatic Method to deeply compare==nested objectsassert.throws()โassertStatic Method to complain if Callback Function Parameter does not throw ExceptionSingletonโ TS Syntax Pattern to ensure exactly only one object instance of a class, using Private Constructor & Static Methodassert.strictEqual()โassertStatic Method to test expression===expected, determined byObject.is()assert.deepStrictEqual()โassertStatic Method to test===for deeply nested objectinherits()โutilStatic Method to set arg1 Object to inherit from arg2 objectexec()โchild_processStatic Method to spawn Shell & execute commandspawn()โchild_processStatic Method to spawn newChildProcessreaddirSync()โfsStatic Method to Sync read dir contentreadFileSync()โfsStatic Method to Sync read file contentreadFile()โfsStatic Method toasyncread contents of filereaddir()โfsStatic Method toasyncread dir contentwriteFile()โfsStatic Method toasyncwrite data to filewriteFileSync()โfsStatic Method to Sync write data to fileappendFile()โfsStatic Method toasyncappend data to fileappendFileSync()โfsStatic Method to Sync append data to fileexistsSync()โfsStatic Method to check Sync if path existsmkdirSync()โfsStatic Method to Sync make new dirmkdir()โfsStatic Method toasyncmake new dirunlinkSync()โfsStatic Method to Sync remove file/Symbolic Linkrename()โfsStatic Method toasyncrename file (to new path)renameSync()โfsStatic Method to Sync rename fileunlink()โfsStatic Method toasyncremove file/Symbolic LinkrmdirSync()โfsStatic Method to Sync remove dirrmdir()โfsStatic Method toasyncremove dircreateReadStream()โfsStatic Method to create aReadablefilestreamcreateWriteStream()โfsStatic Method to create aWritablefilestreamcreateServer()โhttpStatic Method to create new HTTP Serverrequest()โhttpStatic Method to make a HTTP RequestgetHeapStatistics()โv8Static Method to print stats for JS Engineemitter.on()โ emitter Static Method to wire up custom eventstaticโ JS Keyword to define Static Method/property forclass