Working With Fetch API

4 years ago

If you are writing a web application, there is every possibility that at some point you will have to work…

Switch Case

4 years ago

A switch statement gives an expression a value to evaluate and several different statements to execute based on the value…

Debugging Your Javascript Code

4 years ago

Web browsers generally have consoles, which are interactive command lines where you can print text and test pieces of code.…

Pure And Impure Functions in Javascript

4 years ago

Pure Functions A pure function in Javascript is one that given the same input will always return the same output…

Return Statements in Java

4 years ago

In a return statement in Java, we evaluate expressions, and as part of this evaluation, other methods may run in…

Access Modifiers in Java

4 years ago

Modifiers are keywords that are added to variables, methods and classes to change their meaning. There are two (2) types…

Looping in Java

4 years ago

A loop statement allows the programmer to execute a statement or group of statements multiple number of times, based on…

5 Habits of a Security-Conscious Developer

4 years ago

Given the amount of security breaches that go on everyday, there is hardly any security-conscious developer (or any developer for…

Working With Arrays in Java

4 years ago

Arrays refer to a sequential collection of elements of the same type. It is used to store a collection of…

Throw And Throws Exception in Java

4 years ago

Throw Throw is a keyword that is used in Java to declare an exception which is similar to the try/catch…