Skip to content

Commit

Permalink
Add two links (#20739)
Browse files Browse the repository at this point in the history
* 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 <sidachen2003@gmail.com>
  • Loading branch information
Ahmed-Hakeem and Josh-Cena authored Sep 16, 2022
1 parent dae29c9 commit bfabbf8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion files/en-us/web/javascript/language_overview/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down

0 comments on commit bfabbf8

Please sign in to comment.