https://xenodochial-jepsen-751c65.netlify.com/
https://drive.google.com/drive/folders/1BfsBkfvpzbvbZv5uN4vN5nqVGJT0_d3Y?usp=sharing
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css"| .App { | |
| flex: 1; | |
| display: flex; | |
| min-height: 100vh; | |
| text-align: center; | |
| background-color: #e9ebee; | |
| } | |
| .choice-card { | |
| flex: 1; |
| .App { | |
| flex: 1; | |
| display: flex; | |
| min-height: 100vh; | |
| text-align: center; | |
| background-color: #e9ebee; | |
| } | |
| .choice-card { | |
| flex: 1; | |
| display: flex; |
https://xenodochial-jepsen-751c65.netlify.com/
https://drive.google.com/drive/folders/1BfsBkfvpzbvbZv5uN4vN5nqVGJT0_d3Y?usp=sharing
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css"| <!doctype html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="utf-8"> | |
| <title>Hello World</title> | |
| <link rel="icon" href="coderschool.png"> | |
| <meta name="description" content="The HTML5 Herald"> | |
| <meta name="author" content="SitePoint"> |
| # Arrays Exercise | |
| Here we'll go through some arrays that highlight the various Array Methods in JavaScript. | |
| ``` | |
| const inventors = [ | |
| 'Albert Einstein', | |
| 'Issac Newton', | |
| 'Galileo Galilei', | |
| 'Marie Curie', |
The goal of this lab is to help you understand the materials that we went over yesterday, but for a more complicatd case. After completing the lab, you should be able to create any webpage from scratch quickly without any issue at all. (Okay, some issues are fine.)
We're going to be cloning a real life landing page - everyone's favorite music streaming service, Spotify! Go check out www.spotify.com for a preview of what you can build.
| # Number Guessing Game (Basic) | |
| Congratulations, you're on your way to learning JavaScript. For your final Day 1 assignment, you'll have to build a simple number guessing game. | |
| Doing this assignment will test your ability to use variables, functions, and (optionally, if you're brave!) Arrays. We'll cover Arrays in depth next week, but if you want to try now, go ahead! | |
| ## Milestone 0: Draw a Picture | |
|  |
| { | |
| "candidates": [ | |
| { | |
| "id": 69, | |
| "first_name": "Carola", | |
| "last_name": "Linsley", | |
| "email": "[email protected]", | |
| "gender": "Female", | |
| "country": "Brazil", | |
| "job_title": "VP Marketing", |
| const http = require('http'); | |
| const request = require('request'); | |
| require('dotenv').config(); | |
| const clientId = process.env.REACT_APP_CLIENT_ID; | |
| const secretKey = process.env.REACT_APP_SECRET_KEY; | |
| console.log('started server on port 5000'); | |
| http.createServer((req, res) => { |
| const girlfriends = [ | |
| { isHappy: false, name: 'Binna', likesMovies: false, likesFlowers: true, favoriteFlowerColor: 'red' }, | |
| { isHappy: true, name: 'Vivian', likesMovies: false, likesFlowers: true }, | |
| { isHappy: false, name: 'Tram', likesMovies: true, likesFlowers: false }, | |
| { isHappy: true, name: 'Diep', likesMovies: true, likesFlowers: true }, | |
| ] | |
| function takeToMovie(girlfriend) { | |
| console.log('Loi is taking ' + girlfriend.name + ' to the movies') | |
| } | |
| function buyFlowers(girlfriend) { |