function
funAssign() {
// location.assign(url)
location.assign(
'http://mail.ru'
);
}
funMake() {
// location.href
document.write(location.href +
'<br />'
// location.toString()
document.write(location.toString() +
// location.pathname
document.write(location.pathname +
// location.protocol
document.write(location.protocol +
// location.host
document.write(location.host +
// location.hostname
document.write(location.hostname +
// location.port
document.write(location.port +
<!DOCTYPE html>
<
html
>
head
meta
charset
=
"utf-8"
/>
title
>New Page</
script
src
"js/script.js"
></
</
body
funMake();
br
a
href
"javascript:funAssign()"
>mail.ru</