KKeyboardScriptinkeyboardscript.hashnode.dev·Mar 8, 2022 · 3 min readLearning TypeScript - Part 2Type System In programming languages, a type system is a logical system comprising a set of rules that assigns a property called a type to the various constructs of a computer program, such as variables, expressions, functions or modules. The main pu...00
KKeyboardScriptinkeyboardscript.hashnode.dev·Mar 4, 2022 · 3 min readLearning TypeScript - Part 1Typescript, Typescript, Typescript... Everywhere I could see Typescript and even the in the quote like this below Adapting Typescript one day, keeps the JavaScript problems away Before we take a look on TypeScript, Let's have a glimpse of JavaScrip...00
KKeyboardScriptinkeyboardscript.hashnode.dev·May 8, 2021 · 3 min readWhat's different on % operator on Javascript?The Mathematical modulo operation For positive numbers The modulo operator is used to find the remainder when the dividend is divided by the divisor (dividend/divisor). Let us say the dividend 'a' and the divisor 'n'. The remainder of a % n is given...00