본문 바로가기

JS/Javascript21

현재 위치 위도 경도 표시하기 (Javascript) (function location(){navigator.geolocation.getCurrentPosition(function(position) {console.log("위도 : " + position.coords.latitude);console.log("경도 : " + position.coords.longitude);}, ); })(); geolocation.getCurrentPostion() 현재 위치를 가져온다 geolocation APIhttps://developer.mozilla.org/ko/docs/Web/API/Geolocation_API 2020. 9. 6.
진수 변환하기 toString (JavaScript) const a = 100;const bin = a.toString(2);const oct = a.toString(8);const hex = a.toString(16); console.log(`10진수 ${a} -> 2진수 ${bin}`);console.log(`10진수 ${a} -> 8진수 ${oct}`);console.log(`10진수 ${a} -> 16진수 ${hex}`);console.log(typeof(bin)); 1. toString(값) 메소드는 지정된 객체 문자열을 출력한다.2. 값이 지정되지 않으면 임의로 10진수로 지정된다.3. 반환 되는 값은 Number가 아니며 String으로 반환된다. 2020. 8. 7.
Dday 계산기 (JavaScript) DOCTYPE html> 디데이 계산 2020년 크리스마스 Dday !! 00:00 const clockBox = document.querySelector("#clock");const clock = clockBox.querySelector("h2"); setInterval(function getTime() { // Don't delete this. const cristxmasDay = new Date("2020-12-24:00:00:00+0900"); const nowDay = new Date(); const gap = cristxmasDay - nowDay const day = Math.floor(gap / (1000 * 60 * 60 * 24)); //일 const hours = Math.floor(.. 2020. 8. 7.
Array.fill() 정리 (JavaScript) let arr1 = [1, 2, 3]; arr1.fill(0); console.log(arr1); let arr2 = [1, 2, 3, 4, 5]; arr2.fill('s', 2); console.log(arr2); let arr3 = ['a', 'b', 'c', 'd', 'e']; arr3.fill(0, 1, 3); console.log(arr3); Array.fill(설정할 값, 시작 인덱스, 끝 인덱스) 배열에서 지정한 값으로 바꾸어 반환한다. 2020. 8. 6.