Giter Site home page Giter Site logo

leaderboard's Introduction

Hi, I am ikoote

Computer Engineer | Full Stack Developer | Web Designer | Technical Writer | Mentor


Experienced engineer & full-stack developer passionate about open-source. Skilled in coding, networking, testing & user-friendly designs. Proficient in various languages, unit testing, frameworks & cutting-edge tech. An agile learner with proven remote work excellence. Strong problem-solving abilities & communication skills.

Contact me on:

Email: [email protected]

leaderboard's People

Contributors

ikoote1 avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar

leaderboard's Issues

Peer to peer code review

Great job in writing this amazing code. however, after reviewing your project, there are a few suggestions we would like you to consider.

  • can we use a type = "number" on the score for the input? This would make the application more practical and prevent logical errors in data handling.

    <input type="text" name="score" class="your-score" placeholder="Your score">

  • consider adding a required attribute to your input elements to make it impossible for users to submit empty data

    <input type="text" name="user" class="name" placeholder="Your name">
    <input type="text" name="score" class="your-score" placeholder="Your score">

  • The leaderboard should be able to sort the users' data based on their scores in descending order. consider using the array.sort() function as shown below:
    arr = arr.sort((a, b) => a - b)

  • Kindly consider refactoring all functions defined with the 'function' keyword. Try using arrow functions instead like shown below:

    Leaderboard/src/index.js

    Lines 17 to 33 in 4ae894e

    function addData(event) {
    event.preventDefault();
    const formData = new FormData(form);
    const data = Object.fromEntries(formData);
    const jsonData = JSON.stringify(data);
    fetch('https://us-central1-js-capstone-backend.cloudfunctions.net/api/games/2gzeEkv7rMvQMPeB1pjG/scores/', {
    method: 'POST',
    body: jsonData,
    headers: {
    'Content-type': 'application/json; charset=UTF-8',
    },
    })
    .then((response) => response.json())
    .then((json) => console.log(json));
    }

    const addData = event => { };

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.