Xrayya / dicoding-final-FE

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Final Project Dicoding Front-End

Repository for the final project learning path "Learning Basic Web Programming" in 2023
This is a bookshelf project
note : the content in this project is written in Bahasa

Features

  • Add books
  • Unfinished books table
  • Finished books table
  • Move book between table
  • Delete books
  • Persistent data (local storage)
  • Statistic
    • All books count
    • Unfinished book percentage

Personal Notes

Book Data

{
  id: string | number,
  title: string,
  author: string,
  year: number,
  isComplete: boolean,
}

Improvisation

{
  id: string | number,
  title: string,
  author: string,
  + publisher: string,
  + categories: string[],
  + page: number,
  + language: string,
  year: number,
  isComplete: boolean,
}

Last Progress

brainstorming statistic

About

License:GNU General Public License v3.0


Languages

Language:JavaScript 66.3%Language:HTML 23.9%Language:CSS 9.8%