Skip to main content

Web-Related Terms Beginning with U

Unary Operator in JavaScript

Unary operators are operators that accept only one operand. Typical examples are the typeof and unary plus operators.

Uncontrolled Component (ReactJS)

An uncontrolled component is a component whose form's data React does not control exclusively.

Learn more...

undefined in JavaScript

JavaScript automatically assigns undefined to any variable you declare without an initial value.

Learn more...

Unicode

Unicode is a character encoding organization that assigns code points (unique identification numbers) to virtually all the characters in the world.

Learn more...

Unicode (RegExp)

Regular expression's Unicode flag (u) tells the computer to search for Unicode RegExp patterns.

Learn more...

Unit

A unit is anything accepted as a gauge for expressing the quantity or size of another thing.

Learn more...

Unit Test (TDD)

unit test is a test written to assess the functionality of an independent piece of program.

Learn more...

Unmounting Phase (ReactJS)

A component's unmounting phase is when the component's instance is being removed from the DOM.

Learn more...

unshift() in JavaScript

unshift() adds its arguments to the beginning of its calling array and returns the calling array's new length.

Learn more...

Updating Phase (ReactJS)

A component's updating phase is the period when the component instance is being updated.

Learn more...

URL (Uniform Resource Locator)

A URL is a website's specific location on the web.

Learn more...

User Interface (UI)

A user interface (UI) is a connection mechanism that allows communication between humans and computers.

Learn more...

UTF

UTF (Unicode Transformation Format) is the algorithm Unicode uses to transform all Unicode code points into their equivalent binary formats.

Learn more...

UTF-8

UTF-8 allows encoding code points into code units of eight bits.

Learn more...

UTF-16

UTF-16 allows encoding code points into code units of 16 bits.

Learn more...

UTF-32

UTF-32 allows encoding code points into code units of 32 bits.

Learn more...