From bfabbf87f795e22d06c699bd061672783b675a44 Mon Sep 17 00:00:00 2001 From: Hakeem <65634467+Ahmed-Hakeem@users.noreply.github.com> Date: Fri, 16 Sep 2022 08:11:52 -0700 Subject: [PATCH] Add two links (#20739) * Improve js overview Since classes are actually special function in js, and js is not a class-based language, so I think removing it from this context (I mean talking about OOP) will be better specially for beginners. * stick with mentioning classes in js overview * fix js overview grammar * Update files/en-us/web/javascript/language_overview/index.md * Update files/en-us/web/javascript/language_overview/index.md * Update files/en-us/web/javascript/language_overview/index.md * Update files/en-us/web/javascript/language_overview/index.md Co-authored-by: Joshua Chen --- files/en-us/web/javascript/language_overview/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/files/en-us/web/javascript/language_overview/index.md b/files/en-us/web/javascript/language_overview/index.md index f232fc26d08811d..dc7dd0ed8698575 100644 --- a/files/en-us/web/javascript/language_overview/index.md +++ b/files/en-us/web/javascript/language_overview/index.md @@ -9,7 +9,7 @@ tags: {{jsSidebar}} -JavaScript is a multi-paradigm, dynamic language with types and operators, standard built-in objects, and methods. Its syntax is based on the Java and C languages — many structures from those languages apply to JavaScript as well. JavaScript supports object-oriented programming with object prototypes and classes. It also supports functional programming since functions can be easily created via expressions and passed around like any other object. +JavaScript is a multi-paradigm, dynamic language with types and operators, standard built-in objects, and methods. Its syntax is based on the Java and C languages — many structures from those languages apply to JavaScript as well. JavaScript supports object-oriented programming with [object prototypes](/en-US/docs/Web/JavaScript/Inheritance_and_the_prototype_chain) and classes. It also supports functional programming since functions are [first-class](/en-US/docs/Glossary/First-class_Function) that can be easily created via expressions and passed around like any other object. This page serves as a quick overview of various JavaScript language features, written for readers with background in other languages, such as C or Java.