Converting class instances to primitives
Sometimes it happens to convert objects/instances to primitives, intentionally or not. Let's suppose this class:
class ProductEntity {
constructor({ name, quantity, price }) {
this.name = name
this.quantity = quantity
this.price = price...
blog.gabrielrufino.com2 min read