Create an expense tracking up that allows a user to enter daily, weekly and monthly expenses and show an expense total for the month.
- Monthly * 1
- Weekly * 4
- Weekday * 4
- Weekend * 2
- Once-off * 1
- Daily * 30
const studentsMarks = [
{ id: 1, name: 'John', english: 80, grade: 12 },
{ id: 2, name: 'Jane', english: 75, grade: 12 },
{ id: 3, name: 'Bob', english: 90, grade: 12 },
{ id: 4, name: 'Alice', english: 85, grade: 12 },
{ id: 5, name: 'Sam', english: 70, grade: 12 },
{ id: 6, name: 'Sara', english: 95, grade: 12 },
{ id: 7, name: 'Tom', english: 60, grade: 12 },
{ id: 8, name: 'Eva', english: 82, grade: 12 },
Check-in
Algorithm
?Share on AWD group on slack
What we will look at
name: NodeJS CI with PostgreSQL
on: push: branches: [ master ] pull_request: branches: [ master ]
Create & deploy a response online pizza pamphlet for a friend that's starting a local pizzeria called Perfect Pizza
.
style.css
file..small img {
You are required to create a web app, to help local Municipality to track electricity usage per household. Each month the Municipality gives Household's 50 units each. As you use appliances, units will drop accordingly. If the units
per household is equal or below 30, add a class warning
into your current units.
In your app you must have the following.
VsCode
and press Ctrl + Shift + X
Wakatime
VsCode
.ESLint is a tool for formatting (linting) your code. It analyze your code and warn you of any potential errors. In order for it to work, you need to configure it with specific rules. Luckily, Standard provides an ESLint configuration that anyone can use.
npm init -y
npm i -D eslint eslint-config-standard eslint-plugin-import eslint-plugin-node eslint-plugin-promise eslint-plugin-standard
.eslintrc.js
file, use this command touch .eslintrc.js
package SwitchExamples; | |
public class TestExample { | |
public static void main(String[] args) { | |
int a[] = {1, 2, 3}; | |
int day = 0; | |
for (int p : a) { | |
switch (p) { |