#beginners
Read more stories on Hashnode
Articles with this tag
In Dart, When you pass primitive data types (such as numbers, strings, or booleans) to a function, a copy of the actual value is passed. · Google's...
For loop is a type of definite loop (it can also iterate for infinite times, but in practical cases, we use it when the number of iterations is known) ·...
DOM stands for Document Object Model. The DOM defines standards for accessing documents. · You might hear about the word DOM Manipulation if you are a...
A switch statement is an alternative to else if statements which allows a variable to be tested for equality against a list of values. · A switch...
The variable is a named space in memory that stores value. You can say that it is a container for data. · Variables are like containers. Variables hold...
If is a conditional statement. It is used when we just want to check the condition. Let’s see if it’s syntax and some rules. · There are various...