© 2023 Hashnode
#operators
Python 3.8 introduced the 'colon equals' operator := which is the same as the equals operator = in any of the programming languages. Both are used for assignments of any value. '=' operator operator =…
Introduction: Truthy and falsy values are fundamental concepts in JavaScript. They determine whether an expression is true or false and are used in control structures and conditions. Understanding the difference between truthy and falsy val…
Scared of assignments? Assignments of your variables? Learning about OPs will set you free of fears. So let's get right into it. "Operator Precedence" in JavaScript determines the order in which opera…
In JavaScript, operators are used to perform operations on one or more values, such as arithmetic calculations, comparison, and logical operations. Arithmetic operators are used to perform mathemat…
Checking data types for variables is vital in any programming language to ensure a smooth and error-free development process🤫. However, this becomes even more essential for accuracy when it comes to …
JavaScript has several types of operators that are used to perform various operations on variables and values. In this blog post, we will be discussing the different types of operators in JavaScript a…
Last time, we started a series on Javascript Iterators. We will now continue with the next iterator, the map. If you missed the first topic in this series, here is a link to read through https://miche…
What is a NULL value? 1. A field with a NULL value is a field with no value 2. If a field in a table is optional, it is possible to insert a new record or update a record without adding a value to thi…
Comparison operators are used in logical statements to determine equality or difference between variables or values. JavaScript provides three different value-comparison operations: == — loose equali…
We ended the last blog with the WHERE clause; now, we will be looking at some of the operators that can be used with the WHERE clause. Points to remember: MySQL is not case-sensitive. It means that t…