Coder Social home page Coder Social logo

zunairkhan811 / awesome-bookses6-using-modules Goto Github PK

View Code? Open in Web Editor NEW
4.0 4.0 0.0 166 KB

Hi! In this project Book lovers can keep a record of their books in their browser.

Home Page: https://zunairkhan811.github.io/Awesome-booksES6-using-modules/

License: MIT License

HTML 1.07% JavaScript 97.13% CSS 1.80%
css html javascript

awesome-bookses6-using-modules's Introduction

logo

Hi ๐Ÿ‘‹, I'm Muhammad Zunair khan

A passionate Full stack developer from Pakistan

coding

zunairkhan811

zunairkhan811

  • ๐Ÿ”ญ Available for accepting new coding challenges

  • ๐ŸŒฑ Passion for learning new things

  • ๐Ÿ‘ฏ Iโ€™m looking forward for Full-time job as a Software Developer

  • ๐Ÿ‘จโ€๐Ÿ’ป All of my projects are available at https://zunairkhan811.github.io/portfolio/

  • ๐Ÿ“ซ How to reach me [email protected]

  • ๐Ÿ“„ Know about my experiences [I have 1+ year of experience in Coding as a freelance developer]

  • โšก Fun fact I am funny ๐Ÿ˜‰โค

Connect with me:

zunairkhan811 in/zunairkhan811 https://www.hackerrank.com/zunairkhan811 https://leetcode.com/zunairkhan811/

Languages and Tools:

bootstrap css3 git html5 javascript mongodb mysql nodejs postman pug python rails react ruby sass

zunairkhan811

ย zunairkhan811

zunairkhan811

awesome-bookses6-using-modules's People

Contributors

zunairkhan811 avatar

Stargazers

 avatar  avatar  avatar  avatar

Watchers

 avatar

awesome-bookses6-using-modules's Issues

Peer to peer review

Hi @zunairkhan811, kindly make sure to use Uppercase on the first letter of Classes

export default class store {
static getbooks() {
let books;
if (localStorage.getItem('books') === null) {
books = [];
} else {
books = JSON.parse(localStorage.getItem('books'));
}
return books;
}
static addbook(book) {
const books = store.getbooks();
books.push(book);
localStorage.setItem('books', JSON.stringify(books));
}
static removebook(idFrombutton) {
const books = store.getbooks();
const index = books.findIndex((book) => book.id === idFrombutton);
books.splice(index, 1);
localStorage.setItem('books', JSON.stringify(books));
}
}

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.