Skip to content

Instantly share code, notes, and snippets.

Assignment 3 - Bank of React

DUE DATE

  • Due on Monday, 11/3, at 11:59 PM
  • You can work in groups or individually. Maximum 4 students per group. Working in groups is strongly recommended and encouraged.

HOW TO SUBMIT

  • Brightspace: Submit (1) project document file in PDF format, (2) the link to your GitHub repository, (3) the link to your website deployed to GitHub Pages, and (4) your group member names on Brightspace by 11:59 PM on the due day. Each student must submit the assignment individually on Brightspace—even when working in a group.

Assignment 3 - Bank of React

DUE DATE

  • NEW DUE DATE: Due on Monday, 4/14, at 11:59 PM
  • You can work in groups or individually. Maximum 4 students per group. Working in groups is strongly recommended and encouraged.

HOW TO SUBMIT

  • Brightspace: Submit (1) project document file in PDF format, (2) the link to your GitHub repository, (3) the link to your website deployed to GitHub Pages, and (4) your group member names on Brightspace by 11:59 PM on the due day. Each student must submit the assignment individually on Brightspace—even when working in a group.

Assignment 3 - Bank of React

DUE DATE

  • NEW DUE DATE (EXTENSION #2): Due on Friday, 11/15, at 11:59 PM
  • You can work in groups or individually. Maximum 4 students per group. Working in groups is strongly recommended and encouraged.

HOW TO SUBMIT

  • Blackboard: Submit (1) project document file in PDF format, (2) the link to your GitHub repository, (3) the link to your website deployed to GitHub Pages, and (4) your group member names on Blackboard by 11:59 PM on the due day. Each student must submit the assignment individually on Blackboard—even when working in a group.
@johnnylaicode
johnnylaicode / assignment-3-bank-of-react-spring24.md
Last active March 27, 2024 01:59
Assignment 3 - Bank of React (CSCI39548-WebDev-Spring24)

Assignment 3 - Bank of React

DUE DATE

  • Due on Monday, 4/8 (NEW DUE DATE), at 11:59 PM
  • You can work in groups or individually. Maximum 4 students per group. Working in groups is strongly recommended and encouraged.

HOW TO SUBMIT

  • Blackboard: Submit (1) project document file in PDF format, (2) the link to your GitHub repository, (3) the link to your website deployed to GitHub Pages, and (4) your group member names on Blackboard by 11:59 PM on the due day. Each student must submit the assignment individually on Blackboard—even when working in a group.
@johnnylaicode
johnnylaicode / assignment-3-bank-of-react-fall23.md
Last active October 17, 2023 23:36
Assignment 3 - Bank of React (CSCI39548-WebDev-Fall23)

Assignment 3 - Bank of React

DUE DATE

  • Due on Wednesday, 11/1, at 11:59 PM
  • You can work in groups or individually. Maximum 4 students per group. Working in groups is strongly recommended and encouraged.

HOW TO SUBMIT

  • Blackboard: Submit (1) project document file in PDF format, (2) the link to your GitHub repository, (3) the link to your website deployed to GitHub Pages, and (4) your group member names on Blackboard by 11:59 PM on the due day. Each student must submit the assignment individually on Blackboard—even when working in a group.
@johnnylaicode
johnnylaicode / assignment-4-bank-of-react-spring23.md
Last active April 10, 2023 00:41
Assignment 4 - Bank of React (CSCI39548-WebDev-Spring23)

Assignment 4 - Bank of React

DUE DATE

  • Due on Friday, 4/21, at 11:59 PM (New Due Date)
  • You can work in groups or individually. Maximum 4 students per group. Working in groups is strongly recommended and encouraged.

HOW TO SUBMIT

  • Blackboard: Submit (1) the link to your GitHub repository, (2) the link to your GitHub Pages website, and (3) your group member names on Blackboard by 11:59 PM on the due day. Each student must submit the assignment individually on Blackboard—even when working in a group.
@johnnylaicode
johnnylaicode / assignment-4-bank-of-react-fall22.md
Last active January 1, 2023 15:53
Assignment 4 - Bank of React (CSCI39548-WebDev-Fall22)

Assignment 4 - Bank of React

DUE DATE

  • Due on Friday, 11/18, at 11:59 PM
  • You can work in groups or individually. Maximum 4 students per group. Working in groups is strongly recommended and encouraged.

HOW TO SUBMIT

  • Blackboard: Submit (1) the link to your GitHub repository, (2) the link to your GitHub Pages website, and (3) your group member names on Blackboard by 11:59 PM on the due day. Each student needs to submit the assignment individually on Blackboard—even when working in a group.
@johnnylaicode
johnnylaicode / index.html
Created June 15, 2022 01:29
Demo code for DOM examples
<!DOCTYPE html>
<html>
<head>
<title>My Website</title>
</head>
<body>
<h1>Hello World!</h1>
<p>This is my website</p>
</body>
</html>
@johnnylaicode
johnnylaicode / assignment-4-bank-of-react-summer22.md
Last active January 1, 2023 15:54
Assignment 4 - Bank of React (CSCI39548-WebDev-Summer22)

Assignment 4 - Bank of React

DUE DATE

  • Due on (New Due Date) Sunday, 7/3, at 11:59 PM
  • You can work in groups or individually. Maximum 4 students per group. Working in groups is strongly recommended and encouraged.

HOW TO SUBMIT

  • Blackboard: Submit (1) the link to your GitHub repository, (2) the link to your GitHub Pages website (extra credit), and (3) your group member names on Blackboard by 11:59 PM on the due day. Each student needs to submit the assignment individually on Blackboard—even when working in a group.
@johnnylaicode
johnnylaicode / myArrayPropertyAndMethod.js
Last active February 16, 2023 20:25
Example code for Assignment 2 - JavaScript Methods
/*----------------------------------------------------------
JavaScript Prototype: Property and Method
Every object in JavaScript has a built-in property called "prototype."
The prototype constructor is used to add new methods (functions) and properties to a JavaScript object.
- If a property is constructed, then the object will be given the property and its value, as default.
- If a method is constructed, then it will be available for the object.
In this code, we use the prototype constructor to add a new property "color" to the Array() object.
In addition, we use the prototype constructor to add a new method "hello" to the Array() object.
----------------------------------------------------------*/