var sum;
function send(){
alert('경고');
}
// send();
var a = 10;
var b = 20; // 전역변수 모든 스코프에 적용됨.
var total = add(a, b); // 결과 30
document.write(total);
function add(x, y) {
var sum = x + y; // 지역변수
return sum;
}
var baby = { // baby 라는 저장소에서 변수, 함수를 꺼내서 사용
age:'2살', // property
sex:'남자',
birthday:'5월 1일',
getAge:function(){
return this.age;
}
}
var age = baby.getAge();
document.write(baby.age); // 2살
document.write(age); // 2살
var baby = { // baby 라는 저장소에서 변수, 함수를 꺼내서 사용
age:'2살', // property
sex:'남자',
birthday:'5월 1일',
getAge:getAge
}
function getAge() {
return this.age;
}
var age = baby.getAge();
document.write(age); // 2살
var i = 1
while(i<10){
document.write("3 x " + i + "= " + (i*3) + '<br/>');
i++;
}
var i = 1
while(i<10){
document.write("3 x " + i + "= " + (i*3) + '<br/>');
i++;
}
for(var i = 1; i<10; i++){
document.write("3 x " + i + "= " + (i*3) + '<br/>');
if(i==6) break;
}
출처 : Rock's Easyweb 유튜브(https://www.youtube.com/watch?v=Mga3LXPnWdc)