일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- 파일질라설치
- index %
- 파일질라설치오류
- FileZilla다운로드
- SUB함수
- excel중복체크
- toFixed()
- Excel
- Git
- removeClass
- 1521
- 증가값
- FileZilla설치
- selectoptions
- slideUp
- selectedIndex
- ctrl+/
- 소스트리인증실패
- hide
- calc.plus
- 주석이 먹히지 않을 때
- push오류
- 파일질라다운로드
- Math.ceil()
- addClass
- is_check
- calc.minus
- Math.floor()
- Parent
- Math.round()
- Today
- Total
잡동사니에도 사랑을
[21.09.10] exam13 본문
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
<script type="text/javascript">
var a = Number("a");
document.write("a = " + a + "<br>"); //NAN (Not a Number)
var sum = a + 1; // NaN + 1 => NaN
document.write("sum = " + sum + "<br>"); //NAN (Not a Number)
var str = a + "str"; // NaN + "str" => "NaNstr",,,문자열과 문자열의 결합
document.write("str = " + str + "<br>");
var v1 = "가나다라";
var v2 = "123456";
var is_num1 = ! isNaN(v1);
var is_num2 = ! isNaN(v2);
if(is_num1)
document.write(v1 + " 은(는) 숫자 입니다.<br>");
else
document.write(v1 + " 은(는) 숫자가 아닙니다.<br>");
if(is_num2) {
document.write(v2 + " 은(는) 숫자 입니다.<br>");
} else {
document.write(v2 + " 은(는) 숫자가 아닙니다.<br>");
}
function sumInt(x, y) {
var isStrX = ! isNaN(x);
var isStrY = ! isNaN(y);
if(! isStrX || ! isStrY) {
return "숫자 형태이거나 숫자값이 전달되어야 합니다.";
}
var result = parseInt(x) = parseInt(y);
return result;
}
document.write(sumInt("a", 1) + "<br>");
document.write(sumInt("1", "2") + "<br>");
document.write(sumInt(100, "5.6") + "<br>");
document.write(sumInt(-1, "-100") + "<br>");
</script>
</head>
<body>
</body>
</html>
'JAVA_EE > JavaScript' 카테고리의 다른 글
[21.09.13] exam18 - 스파게티 소스(에러가 발생하는 이유) (0) | 2021.09.14 |
---|---|
[21.09.13] exam19(JavaScript) - document.getElementById("myid") (0) | 2021.09.14 |
[21.09.10] exam14 (0) | 2021.09.10 |
[JavaScript] 문자열 변환(수식, 숫자, 정수, 대화상자 등) (0) | 2021.09.10 |
[JavaScript] 조건에 따른 값 도출 (0) | 2021.09.10 |