From ea1a938a3e53e70da09a1ee00d1ea59c9b1b2714 Mon Sep 17 00:00:00 2001 From: Angelos Chalaris Date: Tue, 24 Jul 2018 13:23:04 +0300 Subject: [PATCH] Create Object-oriented programming.md --- glossary/Object-oriented programming.md | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 glossary/Object-oriented programming.md diff --git a/glossary/Object-oriented programming.md b/glossary/Object-oriented programming.md new file mode 100644 index 000000000..795d79e5f --- /dev/null +++ b/glossary/Object-oriented programming.md @@ -0,0 +1,4 @@ +### Object-oriented programming + +Object-oriented programming (OOP) is a programming paradigm based on the concept of objects, which may contain both data and procedures which can be use to operate on them. +JavaScript supports Object-oriented programming both via prototypes and classes.