Merge pull request #731 from Chalarangelo/glossary-terms-stefan
Glossary terms v2
This commit is contained in:
3
glossary/AJAX.md
Normal file
3
glossary/AJAX.md
Normal file
@ -0,0 +1,3 @@
|
||||
### AJAX
|
||||
|
||||
Asynchronous JavaScript and XML (known as AJAX) is a term that describes a new approach to using multiple technologies together in order to enable web applications to make quick updates to the user interface without reloading the entire browser page.
|
||||
3
glossary/CORS.md
Normal file
3
glossary/CORS.md
Normal file
@ -0,0 +1,3 @@
|
||||
### CORS
|
||||
|
||||
Cross-Origin Resource Sharing (known as CORS) is a mechanism that uses extra HTTP headers to tell a browser to let a web application running at one domain have permission to access resources from a server at a different domain.
|
||||
4
glossary/Closure.md
Normal file
4
glossary/Closure.md
Normal file
@ -0,0 +1,4 @@
|
||||
### Closure
|
||||
|
||||
A closure is the combination of a function and the lexical environment within which that function was declared.
|
||||
The closure allows a function to access the contents of that environment.
|
||||
4
glossary/Domain-name-registrar.md
Normal file
4
glossary/Domain-name-registrar.md
Normal file
@ -0,0 +1,4 @@
|
||||
### Domain name registrar
|
||||
|
||||
A domain name registrar is a company that manages the reservation of internet domain names.
|
||||
A domain name registrar must be approved by a general top-level domain (gTLD) registry or a country code top-level domain (ccTLD) registry.
|
||||
3
glossary/Flexbox.md
Normal file
3
glossary/Flexbox.md
Normal file
@ -0,0 +1,3 @@
|
||||
### Flexbox
|
||||
|
||||
Flexbox is a one-dimensional layout model used to style websites as a property that could advance space distribution between items and provide powerful alignment capabilities.
|
||||
4
glossary/Garbage-collection.md
Normal file
4
glossary/Garbage-collection.md
Normal file
@ -0,0 +1,4 @@
|
||||
### Garbage collection
|
||||
|
||||
Garbage collection is a form of automatic memory management.
|
||||
It attempts to reclaim memory occupied by objects that are no longer used by the program.
|
||||
3
glossary/MongoDB.md
Normal file
3
glossary/MongoDB.md
Normal file
@ -0,0 +1,3 @@
|
||||
### MongoDB
|
||||
|
||||
MongoDB is a NoSQL database model that stores data in flexible, JSON-like documents, meaning fields can vary from document to document and data structure can be changed over time
|
||||
5
glossary/Mutabe-value.md
Normal file
5
glossary/Mutabe-value.md
Normal file
@ -0,0 +1,5 @@
|
||||
### Mutable value
|
||||
|
||||
Mutable value is a type of variable that can be changed once created.
|
||||
Objects are mutable as their state can be modified after they are created.
|
||||
Primitive values are not mutable as we perform reassignment once we change them.
|
||||
3
glossary/PWA.md
Normal file
3
glossary/PWA.md
Normal file
@ -0,0 +1,3 @@
|
||||
### PWA
|
||||
|
||||
Progressive Web App (known as PWA) is a term used to describe web applications that load like regular websites but can offer the user functionality such as working offline, push notifications, and device hardware access that were traditionally available only to native mobile applications.
|
||||
4
glossary/SQL-injection.md
Normal file
4
glossary/SQL-injection.md
Normal file
@ -0,0 +1,4 @@
|
||||
### SQL injection
|
||||
|
||||
SQL injection is a code injection technique, used to attack data-driven applications.
|
||||
SQL injections get their name from the SQL language and mainly target data stored in relational databases.
|
||||
4
glossary/SSL.md
Normal file
4
glossary/SSL.md
Normal file
@ -0,0 +1,4 @@
|
||||
### SSL
|
||||
|
||||
Secure Sockets Layer, commonly known as SSL or TLS, is a set of protocols and standards for transferring private data across the Internet.
|
||||
SSL uses a cryptographic system that uses two keys to encrypt data.
|
||||
3
glossary/Scope.md
Normal file
3
glossary/Scope.md
Normal file
@ -0,0 +1,3 @@
|
||||
### Scope
|
||||
|
||||
Each function has its own scope, and any variable declared within that function is only accessible from that function and any nested functions.
|
||||
Reference in New Issue
Block a user