Last active
October 29, 2017 13:41
-
-
Save kurtmilam/a1179741777ea6f88374286a640829cc to your computer and use it in GitHub Desktop.
What is a POJO in JavaScript?
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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