This is a list of advanced JavaScript learning resources from people who responded to this [Tweet][13] and this [Tweet][20].
-
[You Don't Know JS][3]
-
[Frontend Masters courses by Kyle Simpson][12]
-
[@mpjme][6]'s [YouTube videos][5]
| import React, { useState, useEffect, useReducer, useMemo } from 'react' | |
| import ReactDOM from 'react-dom' | |
| // let text = 'hellllooooo' | |
| // I AM REACT | |
| // let domTable = {} | |
| // let element = Counter // state = 0 | |
| // commit(element, domTable) |
| #!/usr/bin/env bash | |
| set -eu | |
| dockerfile=$(mktemp) | |
| trap "rm $dockerfile" EXIT | |
| cat << EOF > $dockerfile | |
| FROM ubuntu:bionic | |
| RUN apt-get update && apt-get install -y wget gnupg2 |
| // check version | |
| node -v || node --version | |
| // list locally installed versions of node | |
| nvm ls | |
| // list remove available versions of node | |
| nvm ls-remote | |
| // install specific version of node |
| #!/bin/bash | |
| # Following the guide found at this page | |
| # http://programmingarehard.com/2014/03/17/behat-and-selenium-in-vagrant.html | |
| echo "\r\nUpdating system ...\r\n" | |
| sudo apt-get update | |
| # Create folder to place selenium in |