Created
December 20, 2021 22:59
-
-
Save HonzaMac/4efecfa7c6418fa3485280e2387369e7 to your computer and use it in GitHub Desktop.
Faker object product.js
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const product = { | |
product: faker.commerce.product(), | |
productName: faker.commerce.productName(), | |
}; | |
console.log(product) | |
/** | |
{ | |
product: 'Pants', | |
productName: 'Tasty Rubber Shoes' | |
} | |
**/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment