1. screen 객체는 사용자의 모니터 정보를 제공하는 객체이다. screen.속성; ex) screen.width ; //모니터의 너빗값을 반환 1-1. screen 객체 종류 종류 explain screen.width 화면의 너빗값을 반환 screen.height 화면의 높이값을 반환 screen.availwidth 작업 표시줄을 제외한 화면의 너빗값을 반환 screen.acailheight 작업 표시줄을 제외한 화면의 높이값 반환 screen.colorDepth 사용자 모니터가 표현 가능한 컬러 bit를 반환 2 . location 객체는 사용자 브라우저와 관련된 속성과 메서드를 제공하는 객체 location.속성; location.메서드(); // 사용자 브라우저의 URL경로값을 가져옴 loca..