날아올라↗↗
2016. 1. 7. 13:38
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
반응형