컴퓨터 썸네일형 리스트형 HTML playsinline 전체 화면으로 전환 방지 Javascript 기기 논리적 해상도 확인 var size = { width: window.innerWidth || document.body.clientWidth, height: window.innerHeight || document.body.clientHeight }; screen.width // 화면(모니터 해상도)의 너비 screen.availWidth // 모니터 화면의 작업 표시줄을 제외한 너비 screen.height // 화면(모니터 해상도)의 높이 screen.availHeight // 모니터 화면의 작업 표시줄을 제외한 높이 MariaDB FORMAT 천 단위 쉼표 찍기 FORMAT(number, decimal_places) number를 소숫점 decimal_places 자리까지 표현하는 함수이다. FORMAT(number, 0) 위와 같이 하면 정수부분까지 표현을 하는데, 소수점 자리와 상관없이 숫자로 표현하면 무조건 세자리마다 쉼표를 찍는다. Javascript include 요소 존재 여부 확인 const ARR = [1, 2, 3]; ARR.includes(3); //true Javascript 문자열 자르기 1. 앞부분 잘라서 없애기 let str = "hello, world!"; str = str.substring(4); 2. 뒷부분 잘라서 없애기 let str = "hello, world!"; str = str.slice(0, -4); 이전 1 ··· 10 11 12 13 14 15 16 ··· 88 다음