A project involves the development of an interactive counter that enables users to incrementally or decrementally count numerical values. I developed using HTML, CSS, and JavaScript with folders provided for the application of Separation of Concerns.
- JavaScript
- HTML5
- CSS3
- VSC code
- Jest
- Clone the repo from your GitHub account
git clone
HTTPS link
- Open Visual Studio Code
- Run npm i
- Open index.html
'use strict';
// Data
const data = {
count: 0,
};
// DOM
const dom = {
display: document.getElementById('display'),
increment: document.getElementById('increment'),
decrement: document.getElementById('decrement'),
reset: document.getElementById('reset'),
};
List of features ready and Todos for future development
- Increment: Users can increase the count by a specified value.
- Decrement: Users can decrease the count by a specified value.
- Reset: Ability to reset the count to its initial value.
To-do list:
- Setup Development Environment
- Design User Interface (UI)
- Implementation of Increment Decrement Functions
Project is: completed
- Technological interest
- Creative exploration
- Educational tools