View on GitHub

reading-notes

Learning Notes Repo for Code Fellows

Data Modeling

Terminology

functional programming creating software with pure functions that avoid shared state

object-oriented programming (OOP) creates software design around data/objects

class a template for creating objects

super the parent level class

this a pointer to an object in order to use it’s properties

Test Driven Development (TDD) process of coding and testing

Jest a JavaScript testing framework allows you to write tests

Continuous Integration (CI) the process of integrating code into a shared repository

REST Representational State Transfer

Data Model organizes elements of data and standardizes them

<==Back