As you guys already know, JavaScript is a scripting language that runs in the web browser. Developers use JavaScript to manipulate the DOM, make their websites interactive and many more! This gave me a random idea – why not write a one-line JavaScript code to like a YouTube video without pressing the ‘Like’ button? Read on to find out how!
Continue reading “Like A YouTube Video Using JS | Random Fun”Arrow Functions | JavaScript Basics | Let’s Simplify
We have already discussed the latest standard of JavaScript which is ES6. Let and const was one of the most needed addition. If you have not already, you can read it here. Let us move on to another important concept in ES6 known as arrow functions.
Continue reading “Arrow Functions | JavaScript Basics | Let’s Simplify”Keyboard Input Events | JavaScript Basics | Let’s Simplify
Today, we are looking at JavaScript keyboard input events! We have included text input fields where you can test out these events live. Let’s get started. 😎
Continue reading “Keyboard Input Events | JavaScript Basics | Let’s Simplify”JavaScript Let and Const | Let’s Simplify
ECMAScript 6 (ES6), also colloquially known as JavaScript 6, is the latest standard of JavaScript as introduced in 2015. ES6 came with many important features, such as arrow functions and spread and rest operations, which we will cover in the near-future. Today, we will discuss the new declaration statements let and const and why we require them.
Continue reading “JavaScript Let and Const | Let’s Simplify”Store Passwords The Right Way | Web Security
It is 2019 and security is as important as it can be. Being a beginner web developer, there will come a point where you need to store user information like passwords. At first it may not seem like much but storing passwords in your database needs to be done right.
Continue reading “Store Passwords The Right Way | Web Security”JavaScript Object Notation (JSON) | Let’s Simplify
If you are a beginner in web technology or Android development, chances are you heard about JSON a lot. JSON stands for JavaScript Object Notation. In a nutshell, it is a simple and lightweight format for storing and transporting data over the internet. In this article, we will explain how data is stored and retrieved from a JSON file and why it is so popular today.
Continue reading “JavaScript Object Notation (JSON) | Let’s Simplify”SQL Injection & Prevention | Web Security
SQL stands for Structured Query Language. To understand what SQL Injection is, it is important to understand how information on the web is stored. A database is used to store data such that it is easy to access and manage data efficiently. There are two kinds of databases – Relational and Non-Relational. Relational database stores data in the form of rows and columns while non-relational database store data mainly in four fashions – Key-value, Graph, Column, and Document.
Continue reading “SQL Injection & Prevention | Web Security”