In JavaScript, functions are first-class objects


// Function declaration
function greet(name) {
    return "Hello, " + name + "!";
}

// Assigning a function to a variable
var sayHello = greet;

// Using the function through the variable
console.log(sayHello("Tom")); // Output: Hello, Tom!

// Passing a function as an argument to another function
function executeFunction(func) {
    return func("Jerry");
}

console.log(executeFunction(greet)); // Output: Hello, Jerry!

// Returning a function from another function
function createGreetingFunction() {
    return function(name) {
        return "Hola, " + name + "!";
    };
}

var spanishGreet = createGreetingFunction();
console.log(spanishGreet("Xavier")); // Output: Hola, Xavier!

Lab1

Lab1

https://www.usgs.gov/programs/earthquake-hazards/lists-maps-and-statistics 에서 World Magnitude 8+ 또는 By Year World Significant Earthquakes 사용

Volcano Hazards Program | U.S. Geological Survey (usgs.gov) 에서 Volcano 또는 Earthquake 사용

HTML, CSS, JS를 사용하여 지진데이터를 본인의 스타일로 완성하라. (연도와 지진크기에 따른 색깔표시, 마우스 클릭시 웹사이트 연결 등등) 그 실행결과 화면을 캡쳐하여 보고서에 첨부한다.
프로젝트 파일 전체와 보고서를 함께 넣고 AJ24_HW1_학번_이름.zip만들어서 e-learning에 과제 제출한다. (due by 3/19)