A Practical Use Case for JavaScript’s Object.assign()
Assigning a Database recordset Object to a JavaScript Class Object
Nov 6 · 5 min read

Use Case
There is a lot to Object.assign(). However, at its basic level, it assigns one Object’s property’s to another Object.
The syntax is,
Object.assign(target, ...sources)

