mirror of
https://github.com/github/codeql.git
synced 2026-04-14 19:44:03 +02:00
13 lines
640 B
JavaScript
13 lines
640 B
JavaScript
document.write(document.location.href.charCodeAt(0));
|
|
|
|
document.write(document.location); // $ Alert
|
|
document.write(document.location.href); // $ Alert
|
|
document.write(document.location.href.valueOf()); // $ Alert
|
|
document.write(document.location.href.sup()); // $ Alert
|
|
document.write(document.location.href.toUpperCase()); // $ Alert
|
|
document.write(document.location.href.trimLeft()); // $ Alert
|
|
document.write(String.fromCharCode(document.location.href)); // $ Alert
|
|
document.write(String(document.location.href)); // $ Alert
|
|
document.write(escape(document.location.href));
|
|
document.write(escape(escape(escape(document.location.href))));
|