자브스크립트 놀이터: https://onecompiler.com/javascript/3xcsv37sy
3xcsv37sy - JavaScript - OneCompiler
Javascript Online Compiler Write, Run & Share Javascript code online using OneCompiler's JS online compiler for free. It's one of the robust, feature-rich online compilers for Javascript language. Getting started with the OneCompiler's Javascript editor is
onecompiler.com
3xcsv37sy - JavaScript - OneCompiler
Javascript Online Compiler Write, Run & Share Javascript code online using OneCompiler's JS online compiler for free. It's one of the robust, feature-rich online compilers for Javascript language. Getting started with the OneCompiler's Javascript editor is
onecompiler.com
/**
* 문자열이 빈 문자열인지 체크하여 결과값을 리턴한다.
* @param str : 체크할 문자열
*/
function isEmpty(str){
if(typeof str == "undefined" || str == null || str == "")
return true;
else
return false ;
}
/**
* 문자열이 빈 문자열인지 체크하여 기본 문자열로 리턴한다.
* @param str : 체크할 문자열
* @param defaultStr : 문자열이 비어있을경우 리턴할 기본 문자열
*/
function nvl(str, defaultStr){
if(typeof str == "undefined" || str == null || str == "")
str = defaultStr ;
return str ;
}
'IT > Javascript' 카테고리의 다른 글
[javascript] form 처리, button에 type을 써줘야 !! (0) | 2022.09.02 |
---|---|
Request param,query, body 의 차이점 (0) | 2021.09.14 |
[javascript] 특정 값 삭제 (0) | 2021.08.20 |
[javascript] 오브젝트 로그 확인[object Object] (0) | 2021.04.28 |
[express] express request.body undefined 문제 (0) | 2021.04.08 |