Hey Geeks! Are you planning to pursue a career in software development? If so, design patterns are a skill that you’ll need pickup soon. Therefore we introduce this new series, where we will dedicate one article to each pattern and attempt to explain it in the easiest way possible. But before we dive in, let us first look at what design patterns really are.
Continue reading “Design Patterns in OOP | Let’s Simplify”Parameter Binding in PHP – Examples and Discussion
In this article, we are going to look into four basic examples of Parameter Binding in PHP using both MySQLi and PDO. If Parameter Binding does not tell you anything, you may want to check out my previous article where I explained how Parameter Binding can be used for deterring most SQL Injection attacks. Let’s get started!
Continue reading “Parameter Binding in PHP – Examples and Discussion”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”Generate Random Numbers | Programming Basics
Many-a-times our coding projects require us to generate random numbers between an upper and lower limit. In this article, you will learn how to do the same in six most popular programming languages – C++, C#, Java, Python, JS and PHP. Let’s get started.
Continue reading “Generate Random Numbers | Programming Basics”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”