diff --git a/glossary/MongoDB.md b/glossary/MongoDB.md new file mode 100644 index 000000000..dd07f0ed0 --- /dev/null +++ b/glossary/MongoDB.md @@ -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 diff --git a/glossary/SQL-injection.md b/glossary/SQL-injection.md new file mode 100644 index 000000000..2da3c83ab --- /dev/null +++ b/glossary/SQL-injection.md @@ -0,0 +1,3 @@ +### SQL injection + +SQL injection is a code injection technique, used to attack data-driven applications. diff --git a/glossary/Scope.md b/glossary/Scope.md new file mode 100644 index 000000000..ee121f3e0 --- /dev/null +++ b/glossary/Scope.md @@ -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.