General javascript functions and syntax.
Evaluates a bool criteria such as a variable or statement and executes code if true.
For use in if statements, runs code statement or block if criteria evaluates to "false".
Keyword that declares a function.
Used in function statements and API function files.
Terminates the current for, while, or do-while loop and continues executing the code that follows the loop.
Jumps to next item and continues in the current for loop.
The typeof operator returns a string describing the type of the value.
A JavaScript switch statement is a control flow construct that allows code to be executed conditionally based on the match between a…
The import keyword in JavaScript is used to import functions, objects, or variables from another file, which can then be used in the…
import
The JavaScript try statement executes a block of code, catches errors if they occur using catch, and includes an optional finally block…