document.write("parseFloat<br>");

document.write("parseFloat(123) : " + parseFloat("123") + "<br>");

document.write("parseFloat(123.12.34) : " + parseFloat("123.12.34") + "<br>");

document.write("parseFloat(123.12 34 45 67) : " + parseFloat("123.12 34 45 67") + "<br>");

document.write("parseFloat(123.12은123.12) : " + parseFloat("123.12은123.12") + "<br>");

document.write("parseFloat(오늘은25일) : " + parseFloat("오늘은25일") + "<br>");


3-4_TypeCastFunc.js


반응형

'Programming > JavaScript' 카테고리의 다른 글

[JavaScript] 5-0_OOPinJavaScript.html  (0) 2016.12.07
[JavaScript] 3-5_evalFunc.js  (0) 2016.12.07
[JavaScript] 3-3_escapeFunc.js  (0) 2016.12.07
[JavaScript] 3-2_CalDate.js  (0) 2016.12.07
[JavaScript] 3-1_PrintTime.js  (0) 2016.12.07

//escape()

//기본적인 알파벳과 숫자외의 특수문자나 공백등이 ASCII코드 16진수 표기 기준에 맞춰 대체됨

//단 escape()는 URI를 인코딩하는데에는 사용할 수 없음.

//이경우엔 encodURI()를 사용할것

document.write("Origin string : aA1 *<br>");

document.write("Using escape() : " + escape("aA1 *") + "<br>");

document.write("Using unescape() : " + unescape("aA1%20*" ));



반응형

'Programming > JavaScript' 카테고리의 다른 글

[JavaScript] 3-5_evalFunc.js  (0) 2016.12.07
[JavaScript] 3-4_TypeCastFunc.js  (0) 2016.12.07
[JavaScript] 3-2_CalDate.js  (0) 2016.12.07
[JavaScript] 3-1_PrintTime.js  (0) 2016.12.07
[JavaScript] 3-0_Variables and Functions  (0) 2016.12.07

var weekStr = '일월화수목금토';

dayGap = 2000;


now = new Date();

newDay = new Date();

newDay.setDate(now.getDate() + dayGap);

newYear = newDay.getFullYear();

newMon = newDay.getMonth() +1;

newDate = newDay.getDate();

newWeekDay = weekStr.substr(newDay.getDay(),1);


document.write(now + ' + ' + dayGap + '일 = ');

document.write(newWeekDay + '요일 ' + newMon + '월 ' + newDate + '일 ' + newYear + '년');

document.write('<br>' + newDay);


3-2_CalDate.js


반응형

'Programming > JavaScript' 카테고리의 다른 글

[JavaScript] 3-5_evalFunc.js  (0) 2016.12.07
[JavaScript] 3-4_TypeCastFunc.js  (0) 2016.12.07
[JavaScript] 3-3_escapeFunc.js  (0) 2016.12.07
[JavaScript] 3-1_PrintTime.js  (0) 2016.12.07
[JavaScript] 3-0_Variables and Functions  (0) 2016.12.07

var weekstr = '일월화수목금토';


var now = new Date();

document.write(now + '<br>');

//getYear()을 하면 왜 116?

year = now.getYear();

year = now.getFullYear();

//getMonoth()를 통해 가져온 월은 Zero-base

month = now.getMonth();

++month;

date = now.getDate();

hour = now.getHours();

min = now.getMinutes();

sec = now.getSeconds();

mils = now.getMilliseconds();

weekDays = now.getDay();


document.write(year + '년 ' + month + '월 ' + date + '일 ' + weekstr.substr(weekDays,1) + '요일');

document.write('<br>');

document.write(hour + '시 ' + min + '분 ' + sec + '.' + mils + '초');


3-1_PrintTime.js


반응형

'Programming > JavaScript' 카테고리의 다른 글

[JavaScript] 3-5_evalFunc.js  (0) 2016.12.07
[JavaScript] 3-4_TypeCastFunc.js  (0) 2016.12.07
[JavaScript] 3-3_escapeFunc.js  (0) 2016.12.07
[JavaScript] 3-2_CalDate.js  (0) 2016.12.07
[JavaScript] 3-0_Variables and Functions  (0) 2016.12.07

<!DOCTYPE html>

<html>

<head>

<meta charset = "UTF-8">

<title>Javascript Variables and Functions</title>

</head>

<body>

<div id = "3-1">

<h3>3-1_PrintTIme.js</h3>

<script type = "text/javascript" src = "3-1_PrintTime.js"></script>

</div>

<div id = "3-2">

<h3>3-2_CalDates.js</h3>

<script type = "text/javascript" src = "3-2_CalDate.js"></script>

</div>

<div id = "3-3">

<h3>3-3_escapeFunc.js</h3>

<script type = "text/javascript" src = "3-3_escapeFunc.js"></script>

</div>

<div id = "3-4">

<h3>3-4_TypeCastFunc.js</h3>

<script type="text/javascript" src = "3-4_TypeCastFunc.js"></script>

</div>

<div id = "3-5">

<h3>3-5_evalFunc.js</h3>

<script type = "text/javascript" src = "3-5_evalFunc.js"></script>

</div>

<body>

</html>

3-0_Variables and Functions.html


반응형

'Programming > JavaScript' 카테고리의 다른 글

[JavaScript] 3-5_evalFunc.js  (0) 2016.12.07
[JavaScript] 3-4_TypeCastFunc.js  (0) 2016.12.07
[JavaScript] 3-3_escapeFunc.js  (0) 2016.12.07
[JavaScript] 3-2_CalDate.js  (0) 2016.12.07
[JavaScript] 3-1_PrintTime.js  (0) 2016.12.07

+ Recent posts