Skip to content

Instantly share code, notes, and snippets.

@kurtmilam
Last active October 29, 2017 13:41
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 kurtmilam/a1179741777ea6f88374286a640829cc to your computer and use it in GitHub Desktop.
Save kurtmilam/a1179741777ea6f88374286a640829cc to your computer and use it in GitHub Desktop.
What is a POJO in JavaScript?
// Object initializer notation (also known as Object literal notation)
const mediumArticle = {
title: "What is a POJO in JavaScript?",
subTitle: "The Plain Old JavaScript Object",
tldr: "In JavaScript, a POJO is any object that can be created using the Object initializer notation."
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment