docs.rodeo

MDN Web Docs mirror

Location: origin property

{{APIRef("Location")}}  {{AvailableInWorkers}} 

The origin read-only property of the {{domxref("Location")}}  interface returns a string containing the Unicode serialization of the origin of the location’s URL.

The exact structure varies depending on the type of URL:

For all other cases, the string "null" is returned.

See {{domxref("URL.origin")}}  for more information.

Value

A string.

Examples

console.log(window.location.origin); // On this page returns 'https://developer.mozilla.org'

Specifications

{{Specifications}} 

Browser compatibility

{{Compat}} 

See also

In this article

View on MDN