Practical 3

PHOTO EMBED

Sat Mar 07 2026 10:29:15 GMT+0000 (Coordinated Universal Time)

Saved by @Manasi123 #html

<!DOCTYPE html>

<html>

<head>

    <title>Simple JSON Example</title>

</head>

<body>

<h2>JSON Example</h2>

<script>

    // Create a simple JSON object

    let student = {

        "name": "Manasi",

        "age": 17

    };

    // Display on console

    console.log(student);

    // Display on web page

    document.write("Name: " + student.name + "<br>");

    document.write("Age: " + student.age);

</script>

</body>

</html>
content_copyCOPY