https://github.com/projectbarks/cala-calendar
This round is a simple programming assignment; create a JavaScript application that runs in the browser and renders a calendar for the current month. Here's an example of the result we expect:
https://github.com/projectbarks/cala-calendar
Last synced: about 1 year ago
JSON representation
This round is a simple programming assignment; create a JavaScript application that runs in the browser and renders a calendar for the current month. Here's an example of the result we expect:
- Host: GitHub
- URL: https://github.com/projectbarks/cala-calendar
- Owner: ProjectBarks
- Created: 2018-03-17T18:33:11.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2018-03-17T18:38:28.000Z (about 8 years ago)
- Last Synced: 2025-01-14T14:46:07.524Z (about 1 year ago)
- Language: JavaScript
- Homepage: http://brandonbarker.me/cala-calendar/
- Size: 2.93 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# CALA Code Challenge
This is a simple programming assignment; create a JavaScript application
that runs in the browser and renders a calendar for the current month. Here's an
example of the result we expect:

## Guidelines
- The arrow buttons on the left and right should move to the previous and next
months, respectively.
- Use plain JavaScript; no jQuery, React, or other libraries.
Don't worry about browser compatibility (just make sure it renders in the latest version of Google Chrome).
- Don't be too concerned with responsive behavior. We won't judge if it doesn't look great on mobile.
## Evaluation
- Your work will be graded on correctness. Does the calendar render properly?
- We'll look for maintainability. Could someone come along in 6 months and easily make changes?
- Upgradability is important, too. Could your work be easily extended into a more complex calendaring project?