MDN Web Docs

Value

A string.

Examples

The following examples show how the origin property is computed for a blob: URL, an http: URL, and one using a non-default port:

js

const url = new URL("blob:https://mozilla.org:443/");
console.log(url.origin); // 'https://mozilla.org'

js

const url = new URL("http://localhost:80/");
console.log(url.origin); // 'http://localhost'

js

const url = new URL("https://mozilla.org:8080/");
console.log(url.origin); // 'https://mozilla.org:8080'

Specifications

Specification
URL
# dom-url-origin

Browser compatibility

See also

Help improve MDN

Yes No

Learn how to contribute

This page was last modified on by MDN contributors.

Read the original on developer.mozilla.org ↗