In this article I will discuss how you can check if a string contains particular substring. 1. Prior JavaScript ES6, the conventional way to check if a string contains a [ … ]
Category: JavaScript
What is IIFE in JavaScript?
An IIFE (Immediately Invoked Function Expression) pronounced as iify is a JavaScript function that runs as soon as it is defined. In other words, the function gets executed automatically as [ … ]
Uglifying JavaScript Files With Gulp 4 – Tutorial
Gulp is a JavaScript (JS) library to automate slow, time consuming repetitive workflows such as minifying or uglifying JS and CSS files, copying files to distribution directory and so on. [ … ]
JavaScript Naming Conventions
Every programming language has some naming convention, JavaScript is no exception. It is good practice to follow naming conventions while naming variables, functions, classes and so on. Following are some [ … ]