Asynchronous programming
Normalization
The process of organizing the columns (attributes) and tables (relations) of a relational database to minimize data redundancy.
Indexing
data structure lookup table
Database transactions
Atomicity,
Consistency,
Isolation,
Durability
Open Systems Interconnection (OSI) model
Symmetric Encryption The same key is used by everyone (public key) to encrypt information The same key is used by each entity (public key) to decrypt information
Asymmetric Encryption The same key is used by everyone (public key) to encrypt information A different key is used by each entity (private key) to decrypt information
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/***** SETUP *****/ | |
// Constructor | |
function Car(model) { | |
this.model = model | |
} | |
// Factory | |
function Truck(model) { | |
return { |
NewerOlder