The global object
JavaScript provides a global object which has a set of properties, functions and objects that are accessed globally, without a namespace.
The properties are
Infinity
NaN
undefined
and the functions are
decodeURI()
decodeURIComponent()
encodeURI()
encodeURIComponent()
eval()
isFinite()
isNaN()
parseFloat()
parseInt()
The objects are the ones you already saw before, which are part of the standard library:
Array
Boolean
Date
Function
JSON
Math
Number
Object
RegExp
String
Symbol
and errors.
Letβs now describe here the global properties and functions.
Infinity
Infinity
Infinity
in JavaScript is a value that represents infinity.
Positive infinity. To get negative infinity, use the β
operator: -Infinity
.
Those are equivalent to Number.POSITIVE_INFINITY
and Number.NEGATIVE_INFINITY
.
Adding any number to Infinity
, or multiplying Infinity
for any number, still gives Infinity
.
NaN
NaN
The global NaN
value is an acronym for Not a Number
. Itβs returned by operations such as zero divided by zero, invalid parseInt() operations, or other operations.
A special thing to consider is that a NaN
value is ever equal to another NaN
value. You must use the isNaN()
global function to check if a value evaluates to NaN
:
undefined
undefined
The global undefined
property holds the primitive value undefined
.
Running a function that does not specify a return value returns undefined
:
Unlike NaN
, we can compare an undefined
value with undefined
, and get true:
Itβs common to use the typeof
operator to determine if a variable is undefined:
decodeURI()
decodeURI()
Performs the opposite operation of encodeURI()
decodeURIComponent()
decodeURIComponent()
Performs the opposite operation of encodeURIComponent()
encodeURI()
encodeURI()
This function is used to encode a complete URL. It does encode all characters to their HTML entities except the ones that have a special meaning in a URI structure, including all characters and digits, plus those special characters:
~!@#$&*()=:/,;?+-_.
Example:
encodeURIComponent()
encodeURIComponent()
Similar to encodeURI()
, encodeURIComponent()
is meant to have a different job.
Instead of being used to encode an entire URI, it encodes a portion of a URI.
It does encode all characters to their HTML entities except the ones that have a special meaning in a URI structure, including all characters and digits, plus those special characters:
_.!~*'()
Example:
eval()
eval()
This is a special function that takes a string that contains JavaScript code, and evaluates / runs it.
This function is very rarely used and for a reason: it can be dangerous.
I recommend to read this article on the subject.
isFinite()
isFinite()
Returns true if the value passed as parameter is finite.
isNaN()
isNaN()
Returns true if the value passed as parameter evaluates to NaN
.
This function is very useful because a NaN
value is never equal to another NaN
value. You must use the isNaN()
global function to check if a value evaluates to NaN
:
parseFloat()
parseFloat()
Like parseInt()
, parseFloat()
is used to convert a string value into a number, but retains the decimal part:
parseInt()
parseInt()
This function is used to convert a string value into a number.
Another good solution for integers is to call the parseInt()
function:
Donβt forget the second parameter, which is the radix, always 10 for decimal numbers, or the conversion might try to guess the radix and give unexpected results.
parseInt()
tries to get a number from a string that does not only contain a number:
but if the string does not start with a number, youβll get NaN
(Not a Number):
Also, just like Number itβs not reliable with separators between the digits:
Last updated
Was this helpful?