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
- How to fix HAXM is not installed |in Android Studio
- How to fix CMOS Checksum Error in Computer or Laptop | SOLVED
- Reactivating windows after a Hardware change on PC or Laptop
- FIXED: Windows reported that the hardware of your device has changed. Error code :0xc004F211
- "redirect" is not defined pylance("reportUndefinedVariable)
- This action cannot be completed because the file is open in SQL Server(SQLEXPRESS) - FIXED
- Unicode error 'unicodeescape' codec can't decode bytes in position 2-3: truncated UXXXXXXXX escape
- Could not find the 'angular-devkit/build-angular:dev-server' builder's node package | Angular Error
Related Article