-
Notifications
You must be signed in to change notification settings - Fork 1
Home
evashork edited this page May 19, 2014
·
12 revisions
Welcome to the javascript wiki!
- 공부용으로 만든 자바스크립트 wiki 입니다. ^^; 초보분들 환영합니다.
// document.write("Hello world")
/*
document.write("Hello world");
console.log("hello4")
*/
a = 5;
b = "Hello";
document.write("변수 a는" + a + "<br>");
document.write("변수 b는" + b);