You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
The goal of this project assessment is to gauge your ability to develop a minimal front-end web application using HTML, CSS & JavaScript, including your ability to:
Write HTML that provides the application's overall structure and content.
The goal of this project assessment is to gauge your ability to develop a minimal full-stack web application using the Django framework, including your ability to:
Create and configure a Django project
Create a "main" app and install it within the project
The goal of this assessment is to gauge your ability to develop a minimal ReactJS application that renders user-defined components, incorporating dynamic styling and reacts to some basic user interaction.
1. In HTML, create 9 divs that each share a class and that each have a unique id.
2. In JS, create a variable called "marker" with the initial value of 'X'.
3. Cache each div in a separate variable.
4. Using those variables, add click event listeners to each.
5. Above the event listeners, create a function called renderMarker that takes in a cell that will be passed from the event listener.
6. Inside each event listener, call renderMarker and pass the current cell to it.
7. Inside renderMarker, if the marker is 'X', set the cell content to 'O' and reassign marker to 'O'. Do the opposite if the marker is 'O'.
First, you're to create a Destination schema with the following fields/properties (and this schema should be embedded in the Flight schema, which should be updated to have a destinations field/property):