일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 다형성
- 페이징
- 형변환
- Validations
- 자바
- 추상클래스
- 단축키
- while
- 이클립스
- 스프링
- 상속예제
- full text indexing
- Full text
- 전자정부
- 업캐스팅
- 자바 야구게임
- Login with OAuth Authentication
- 전체
- Random
- jquery
- 전체텍스트
- 가변인자
- 로또
- 상속
- angular2
- 야구게임
- IBatis procedure
- 다운캐스팅
- 25가지 효율적인 sql작성법
Archives
- Today
- Total
nalaolla
type 본문
728x90
반응형
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="UTF-8">
- <title>Insert title here</title>
- <script type="text/javascript">
- window.onload = function() {
- // add a boolean to a string
- var boolValue = true;
- var strngValue = "The value is " + boolValue; // results in "The value is true"
- alert(strngValue);
- // add a number to a string
- var numValue = 3.0;
- strngValue = "The value is " + numValue; // results in "The value is 3"
- alert(strngValue);
- }
- </script>
- </head>
- <body>
- </body>
- </html>
728x90
반응형
'javascript > fundamental' 카테고리의 다른 글
indexOf (0) | 2016.01.07 |
---|---|
prompt (0) | 2016.01.07 |
onload (0) | 2016.01.07 |