JS #15- 웹 API 5 (주접생성기, 랜덤다이스 프로그램)
두 프로젝트 모두 모듈프로그래밍을 기초로 둔다. 주접생성기 (main.js) import { copy, shake, getNode, addClass, showAlert, getRandom, insertLast, removeClass, clearContents, isNumericString, } from "./lib/index.js"; import jujeobData from "./data/data.js"; // 모듈 프로그래밍 사용해서 // [phase-1] // 1. 주접 떨기 버튼을 클릭할 수 있는 핸들러를 연결해 주세요. // - button click addEventListener // 2. input 값을 (콘솔에)가져와 주세요. // - input value console.log // 3. j..
JS #11- 웹 API 1 (BOM, DOM)
Location 객체 Navigator 객체 const { platform, userAgent, language, onLine, geolocation } = navigator; navigator.geolocation.getCurrentPosition((data) => { //위치를 찾음 console.log(data) }) 위도, 경도 콘솔에 출력하기 const { platform, userAgent, language, onLine, geolocation } = navigator; navigator.geolocation.getCurrentPosition((data) => { //위치를 찾음 const {latitude:lat, longitude:long} = data.coords; console.log(..