Web-Related Terms Beginning with I
if
Conditional Statement (JS)β
The if conditional statement instructs the computer to execute a JavaScript code block only if a specified condition is true.
Ignore Case (RegExp)β
The ignore case flag (i
) tells the computer to do a case-insensitive search for a RegExp pattern.
Immediately Invoked Function Expression (IIFE)β
An immediately invoked function expression (IIFE) is a function expression that invokes itself automatically.
import.meta
(ES Module)β
TheΒ import.metaΒ code is an object containing information about your current module.
Impure Functionβ
An impure function is a function that contains one or more side effects.
includes()
JavaScript Array Methodβ
includes() checks if its calling array includes the method's first argument.
includes()
JavaScript String Methodβ
includes() checks if its calling string includes the method's first argument.
Indexβ
Index refers to the position of items.
For instance, an array object's indexing starts at zero. In other words, the index of an array's first item is 0
. The second value's index is 1
. And the last item's index is the array's length
minus 1
.
Consider this array object:
["Blue", "White", "Pink", "Green"];
The index (positions) of the array items above are:
- Blue is at index 0
- White's index is 1
- Pink's index is 2
- Green is at index 3
indexOf()
JavaScript Array Methodβ
indexOf() searches its calling array for the first occurrence of the method's string argument.
indexOf()
JavaScript String Methodβ
indexOf() searches its calling string for the first occurrence of the method's string argument.
Indices (RegExp)β
Regular expression's indices flag (d
) tells the computer to include each capturing group's start and end indices in the result of the matched RegExp pattern.
Initializationβ
Initialization occurs when you assign an initial value to a variable.
Inline CSSβ
Inline CSS styles an individual HTML element by adding a style attribute on the element's opening tag.
Instructing Languageβ
An instructor directs the action of a page and its contents. For instance, JavaScript is a commanding language that commands the items of an HTML document.
Integerβ
Integers are numbers without decimals.
Integration Test (TDD)β
AnΒ integration testΒ is a test written to assess the functionality of a dependent piece of program.
Interfaceβ
An interface means connection.
Internal API Release Policyβ
An internal API release policy allows publishing APIs for internal use only.
Internal CSSβ
Internal CSS styles an HTML page's content by adding an HTML <style>
element in the <head>
section of the HTML document.
Internal Hardwareβ
Internal hardware is the internally connected elements of a machine that you will find inside the device's casing.
Internetβ
The internet is a means through which data get shared between two or more computers.
Internet Service Providerβ
An Internet Service Provider (ISP) is a company providing services that connect personal and business devices to the internet.
Inversion of Controlβ
Inversion of control (IoC)Β occurs when you transfer the control of your code's execution to a third party.
Invocationβ
Invocation means to execute a piece of code.
Iterableβ
An iterable is an object that has a property with a @@iterator
key.
Iteration Statement (JS)β
An iteration statement is any piece of code that allows you to repeat a program's execution easily and quickly.