Add glossary/Selector

Also capitalized all the glossary entries.
This commit is contained in:
Angelos Chalaris
2018-07-16 21:04:42 +03:00
parent d6d82e2291
commit b620d595e5
3 changed files with 6 additions and 2 deletions

4
glossary/Selector.md Normal file
View File

@ -0,0 +1,4 @@
### Selector
A CSS selector is a pattern that is used to select and/or style one or more elements in a document, based on certain rules.
The order in which CSS selectors apply styles to elements is based on the rules of CSS specificity.

View File

@ -1,4 +1,4 @@
### array
### Array
Arrays are used to store multiple values in a single variable.
Arrays are ordered and each item in an array has a numeric index associated with it.

View File

@ -1,4 +1,4 @@
### callback
### Callback
A callback function, also known as a high-order function, is a function that is passed into another function as an argument, which is then executed inside the outer function.
Callbacks can be synchronous or asynchronous.