function
funMake() {
document.write(
'screen resolution: '
+screen.width+
' X '
+screen.height+
'<br />'
);
'color depth: '
+screen.colorDepth);
}
<!DOCTYPE html>
<
html
>
head
meta
charset
=
"utf-8"
/>
title
>New Page</
script
src
"js/script.js"
></
</
body
funMake();