Saketh Kowtha
Articles by @sakethk

Articles by @sakethk

Follow
Follow
homeGatsbyJavascriptCSSnewsletter
Series

Javascript


Articles in this series

"use strict" in javascript

Feb 23, 20212 min read

Javascript is crazy language it will allow us to write bad code that we shouldn't do. use strict directive introduced in ECMAScript version 5. It is...

"use strict" in javascript

Power of Javascript reducer

Apr 1, 20212 min read

Reducer executes a function (provided as argument to reducer) on each element of the array, resulting in single output value. Custom Reducer...

Power of Javascript reducer

Implementing your own Generator using closure !!!

Apr 23, 20211 min read

Here is a small program generating x to y numbers using generator in JS later we will implement equivalent function by using closure. Generating x to...

Implementing your own Generator using closure !!!

Javascript form validator

May 12, 20214 min read

Here we are going to build a form validator class it will expose four methods forField, addRule, validate and required. forField This method will take...

Javascript form validator