Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@lumosmind
Created May 11, 2019 19:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lumosmind/1c803ecd4c32dc27cb435d6634d1e45f to your computer and use it in GitHub Desktop.
Save lumosmind/1c803ecd4c32dc27cb435d6634d1e45f to your computer and use it in GitHub Desktop.
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: ƒ}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment