-
Everything you need to know about JavaScript!!
Β When I started learning JS, I used many sources. And of course I have written few articles on JS functions and methods. So I thought of clubbing the simple tricks and basics for JS in single place. Lets start with the variables. 1.Variables: var, const, let var: The most common variable. Can be reassigned but…
-
HTTP Response codes
If you are into API Testing recently, it’s good to have an understanding of the API response codes. A good API will be able to handle the response codes appropriately.Β Let’s have a look at the commonly used response codes: 200 (OK): It indicates that the REST API successfully carried out whatever action the client…
