add scope, mongodb and sql-injection

This commit is contained in:
Stefan Feješ
2018-09-01 14:46:24 +02:00
parent 93e7d1d8d5
commit 888a1dedbe
3 changed files with 9 additions and 0 deletions

3
glossary/MongoDB.md Normal file
View File

@ -0,0 +1,3 @@
### MongoDB
MongoDB stores data in flexible, JSON-like documents, meaning fields can vary from document to document and data structure can be changed over time

View File

@ -0,0 +1,3 @@
### SQL injection
SQL injection is a code injection technique, used to attack data-driven applications.

3
glossary/Scope.md Normal file
View 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.