JSFiddle - React, Tailwind, and code Playground

by shivkumarganesh

JavaScript

$(document).ready(function(){
        var student = new Object();
        student.name="Shiv";
        student.rollNo="12";
    
    alert(student.name);
    alert(student.rollNo);
    
    student.name="Jas";
    alert('Hello');
    
    $(student).change(function(){alert('hello');});
});