- If you were to count in base 8, what would the next three numbers be?
1, 2, 3, 4, 5, 6, _, _, _| const axios = require('axios'); | |
| // make the array that we'll push our responses into | |
| let arr = [] | |
| // hitting the api function | |
| const getData = async (nextEndpoint) => { | |
| // sometimes we don't get the next endpoint | |
| let endpoint; | |
| if (nextEndpoint === undefined) { |
| import React from 'react'; | |
| import './App.css'; | |
| import * as historyData from './history.json'; | |
| // import Event from './Event' | |
| class App extends React.Component { | |
| state = { | |
| events: historyData.result.events | |
| } |
| button { | |
| width: 300px; | |
| height: 50px; | |
| } | |
| .btn-container { | |
| display: flex; | |
| justify-content: center; | |
| } |
| import React from 'react'; | |
| import './App.css'; | |
| import * as historyData from './history.json'; | |
| // import Event from './Event' | |
| class App extends React.Component { | |
| state = { | |
| events: historyData.result.events | |
| } |
| const mongoose = require('mongoose') | |
| const User = require('../models/User') | |
| const Program = require('../models/Program') | |
| const Client = require('../models/Client') | |
| const Project = require('../models/Project') | |
| const Resource = require('../models/Resource') | |
| const { userData, programData, clientData, projectData, resourceData } = require('./seedData') | |
| const addEmployee = async (user, client) => { |
| import java.util.*; | |
| public class CreateEmployee { | |
| public static void main(String[] args) { | |
| System.out.println("Enter a number:"); | |
| Scanner scanner = new Scanner(System.in); | |
| String userInput = scanner.nextLine(); | |
| System.out.println(userInput); | |
| // ArrayList<String> list = new ArrayList<String>(); | |
| // list.add("A"); |
| import React from 'react'; | |
| import './App.css'; | |
| import Routes from './Routes' | |
| class App extends React.Component { | |
| render() { | |
| return ( | |
| <Routes /> | |
| ) | |
| } |