"javascript"의 두 판 사이의 차이
Redjini WiKi
(차이 없음)
|
2017년 7월 3일 (월) 12:00 기준 최신판
setTimeout
setTimeout(function(){
alert("Hello");
}, 3000);
String Trim
function trim (strSource) {
re = /^\s+|\s+$/g;
return strSource.replace(re, '');
}
function ltrim (strSource) {
re = /^\s+/g;
return strSource.replace(re, '');
}
function rtrim (strSource) {
re = /\s+$/g;
return strSource.replace(re, '');
}