blob: 149de54230977acf4b1462c58f29a33e4e9655a6 (
plain)
1
2
3
4
5
6
7
8
9
10
|
console.log(Location);
console.log(Location.prototype);
console.log(location);
try {
location.hostname = "bar";
} catch (error) {
if (error instanceof Error) {
console.log(error.toString());
}
}
|