var funnyGuy = {}; // använd gärna "const" istället (sök)
var funnyGuy = Object.create(Object.prototype, { });
const funnyGuy = { name: 'John Doe' }; Object.prototype.getName = function() { return this.name; }; console.log(funnyGuy.getName()) // skriver ut "John Doe"
const name = ""; Object.getPrototypeOf(name) === String.prototype // true const age = 123; Object.getPrototypeOf(age) === Number.prototype // true const add = (a, b) => a + b; Object.getPrototypeOf(add) === Function.prototype // true
Object.getPrototypeOf(Function.prototype) === Object.prototype; // true Object.getPrototypeOf(String.prototype) === Object.prototype; // true Object.getPrototypeOf(Number.prototype) === Object.prototype; // true
const names = []; Object.prototype.size = 123; if(names.size) { // utvecklaren blandar ihop "size" med "length" console.log('BANG!'); }
const john = Object.create(null); // prova med bara {} Object.getPrototypeOf(john) === Object.prototype // false
var funnyGuy = {}; // använd gärna "const" istället (sök)
var funnyGuy = Object.create(Object.prototype, { });
const funnyGuy = { name: 'John Doe' }; Object.prototype.getName = function() { return this.name; }; console.log(funnyGuy.getName()) // skriver ut "John Doe"
const name = ""; Object.getPrototypeOf(name) === String.prototype // true const age = 123; Object.getPrototypeOf(age) === Number.prototype // true const add = (a, b) => a + b; Object.getPrototypeOf(add) === Function.prototype // true
Object.getPrototypeOf(Function.prototype) === Object.prototype; // true Object.getPrototypeOf(String.prototype) === Object.prototype; // true Object.getPrototypeOf(Number.prototype) === Object.prototype; // true
const names = []; Object.prototype.size = 123; if(names.size) { // utvecklaren blandar ihop "size" med "length" console.log('BANG!'); }
const john = Object.create(null); // prova med bara {} Object.getPrototypeOf(john) === Object.prototype // false
Du måste vara medlem för att kunna kommentera
Flashback finansieras genom donationer från våra medlemmar och besökare. Det är med hjälp av dig vi kan fortsätta erbjuda en fri samhällsdebatt. Tack för ditt stöd!
Swish: 123 536 99 96 Bankgiro: 211-4106