ToshJavaScript Helper to determine the type of your variableContinuously you will need to know what type are the variables in order to create conditionals that are prepared to manipulate and maintain…May 11, 2021May 11, 2021
ToshTurning JavaScript Asynchronously with Async-AwaitAsync/await was introduced in 2017 with ES8. It is a way to execute your code asynchronously without blocking the thread. Instead of using…May 8, 2021May 8, 2021
ToshJavaScript foundationI will list some quick facts and concepts you probably did not know about JS.May 2, 2021May 2, 2021
ToshJavaScript String MethodsJavaScript has some useful string methods that are built into , I will share 5 methods that I find the most useful . I’ll quickly review…Apr 24, 2021Apr 24, 2021
ToshProper way to use error handling in JavascriptIn programming unintended side-effects called errors can and will happen in your code. Allowing these errors to be introduced to people…Apr 18, 2021Apr 18, 2021
ToshJavaScript Algorithm: Doubly Linked ListsA Doubly Linked List (DLL) is a linked data structure consists of a set of sequentially linked records called nodes which contains a lot…Apr 11, 2021Apr 11, 2021
ToshJavaScript Array MethodsArray is a special variable that is use to store different elements, to get the most of it let’s take a look to some methods JavaScript…Apr 4, 2021Apr 4, 2021
ToshTesting React HooksIn this post I want to explain how to test most popular React Hooks using jest and enzyme.Mar 27, 2021Mar 27, 2021