running sample https://stackblitz.com/edit/typescript-2zlayw code=> //hash node class HashNode < T , U > { key : T value : U constructor ( _key : T , _value : U ) { if ( typeof _key === "object" ) throw new Error ( "object as key not allowed" ) this . key = _key ; this . value = _value ; } //get key public getKey () { return this . key ; } //get value ...
all about coding especially in javascript, daily used algorithms, react, angular and other gaming stuffs like webgl, pixijs, three.js and cocos2dx running code sample especially in javascript and c++.