Skip to content

Latest commit

 

History

History
33 lines (27 loc) · 851 Bytes

File metadata and controls

33 lines (27 loc) · 851 Bytes

Web 1 Refresh Demo

Objectives:

  • review Web 1 languages: html, css, js
  • directory structure and file org.
  • best practices (code style, naming conventions, syntax)
  • GIT workflow

HTML

  • document structure (vanilla html)
  • identify where to anticipate changes
  • semantic syntax

CSS

  • short review of k/v selector syntax
  • discuss visual design practices to consider (review other sites)

JS ( list = array )

  • loops & iterative logic
  • variable scope declaration (pythonic: variable_name = "blah")
  • functions (traditional vs fat arrow)
  • conditional logic & ternary operators
  • data types

GIT

  • workflow steps
  • deployment of code
  • what to do when you screw something up
    • merging branches
    • pushing to main from a different branch
    • pull requests
    • resolving merge conflicts -> code review methods