In this article we will discuss, how to create an object using object literal notation in JavaScript. When we change made to the objects, it affects entire object of the script.
Below example describes about that, creating a new object as student and assigned to a variable. Beginning we have assigned name property to thivan then create new variable for student object and assign name property to mydeen.
<script type="text/javascript">
var student =
{
name: "thivan"
}
// Create a new variable andassign the student object
var newStudent = student;
// Change the name property of thestudent object using the new variable
newStudent.name = "mydeen";
// Retrieve the name property fromthe original student object
// Notice that name is changed toMary
document.write(student.name);
</script>
Output:
Mydeen
Post your comments / questions
Recent Article
- ModuleNotFounEerror:No module named celery in Django Project
- How to get domain name information from a Domain using Python
- ModulenotFoundError: no module named 'debug_toolbar' -SOLUTION
- How to create superuser in django project hosted in cPanel without terminal
- CSS & images not loading in django admin | cpanel without terminal
- Could not build wheels for mysqlclient, which is required to install pyproject.toml-based projects
- How to sell domain name on Godaddy (2023)
- TemplateSyntaxError at / Could not parse the remainder: ' + 1' from 'forloop.counter0 + 1'
Related Article