Skip to content

Instantly share code, notes, and snippets.

@hatelove
Last active October 2, 2021 15:30
factory method of class from json
class Order {
static from(json) {
return json ? Object.assign(new Order(), json) : null;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment