Skip to content

Instantly share code, notes, and snippets.

View lumosmind's full-sized avatar
🎯
Focusing

Mustafa Kemal Tuna lumosmind

🎯
Focusing
View GitHub Profile
const o = {
x: 42,
y: 3.14,
f: function() {},
g: function() {}
};
console.log(o1); // {w: "lorem ipsum", x: 42, y: 3.14, g: ƒ, h: ƒ}
@lumosmind
lumosmind / js_oop_1.js
Created May 11, 2019 19:52
JS ile OOP nin 50 tonu: Object Literals
const o = {
x: 42,
y: 3.14,
f: function() {},
g: function() {}
};
console.log(o1); // {w: "lorem ipsum", x: 42, y: 3.14, g: ƒ, h: ƒ}