Regex for Japanese Keywords

Recently I came over a great Regex expression for sorting out Japanese keywords. I have never seen this on StackOverflow and it is really something I’ve been searching for. I must say I was really surprised finding this, because I didn’t think it existed! Regex Expression below Same code as above but without the br …

Great way to map up objects in TypeScript to keep objects initialized

Available in TypeScript 2.1 there is now the possibility to set partial properties values of objects, making it very easy to initialize new objects. I had the problem before that whenever I wanted to create a new object and also initilize a new object, I had to set my values in the constructor, all my …