method 4

JS Array.Method

Array.Method 실행 Array.prototype.forEach() 주어진 함수를 배열 요소 각각에 대해 실행합니다. forEach()는 주어진 callback을 배열에 있는 각 요소에 대해 오름차순으로 한 번씩 실행합니다. 삭제했거나 초기화하지 않은 인덱스 속성에 대해서는 실행하지 않습니다. (예: 희소 배열) callback은 다음 세 인수와 함께 호출됩니다. 요소 값 요소 인덱스 순회 중인 배열 // arr.forEach(callback(currentvalue[, index[, array]])[, thisArg]); ['a', 'b', 'c'].forEach(x=>console.log(x)) // "a" // "b" // "c"채우기 Array.pr..

lang/js 2019.12.10

Method

Windowwindow.alert('내용');메시지경고.window.confirm('내용');확인, 취소 버튼 메시지 박스window.prompt('내용','default value');입력 박스가window.open('url','name','속성');새창 띄우기window.close(); self.close(); close();현재의 창 닫기window.location='url'; / href.location.href='url';지정 페이지 이동String string.blink();깜박거리게string.bold();굵게string.fontcolor(color);텍스트 색상string.italics();이탤릭체로toLowerCase();toUpperCase();소문자로, 대문자로string.charAt..

pe/standard 2006.09.22
반응형