티스토리 뷰
반응형
1. toUpperCase() : 대문자 변환
var str = "abCdeF";
str = str.toUpperCase();
console.log(str);
//ABCDEF;
2. toLowerCase() : 소문자 변환
var str = "abCdeF";
str = str.toLowerCase();
console.log(str);
//abcdef;
3. setTimeout({실행할 함수}, {지연시간(millisecond)}) : 일정 시간 경과 후 함수 실행 (1회)
참고사이트 : https://stackoverflow.com/questions/1190642/how-can-i-pass-a-parameter-to-a-settimeout-callback
function sample(){
alert("sample함수 실행");
}
function sample2(str){
alert(str);
}
//함수를 직접 입력
setTimeout(function(){
alert("setTimeout 실행 테스트");
}, 1000);
//파라미터가 없는 함수 호출
setTimeout(sample, 3000);
//파라미터가 있는 함수 호출
setTimeout(sample2("sample2함수 실행1"), 5000); //setTimeout 동작하지 않음, 바로 실행됨.
setTimeout(sample2, 7000, "sample2함수 실행2");
setTimeout(function(){
sample2("sample2함수 실행3");
}, 9000);
반응형
'Javascript' 카테고리의 다른 글
encodeURI(String) (0) | 2023.08.07 |
---|---|
[Javascript] 거듭제곱 (0) | 2023.04.27 |
[JavaScript] JSON 관련 (0) | 2020.11.04 |
Chrome에서 window.resizeTo(w, h)가 되지 않는 이유 (0) | 2019.07.31 |
브라우저 구분 (0) | 2018.10.18 |