Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- const website = {
- shownaam: function() {
- return "test";
- }
- };
- const site_factory = (naam) => {
- const o = Object.create(website);
- return Object.assign(o, {name: naam});
- };
- const Coolsite = site_factory("Coolsite");
- console.log(coolsite.shownaam());
Advertisement
Add Comment
Please, Sign In to add comment