Skip to content
View navind062g's full-sized avatar
🎯
Focusing
🎯
Focusing

Highlights

  • Pro

Block or report navind062g

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. rmi-data-visualization rmi-data-visualization Public

    TypeScript

  2. blog-using-airtable blog-using-airtable Public

    JavaScript

  3. mixed-messages mixed-messages Public

    App Idea Generator

    JavaScript

  4. jamming jamming Public

    Learning

    JavaScript

  5. 30DaysOfJavaScript 30DaysOfJavaScript Public

    Practice Projects

    JavaScript

  6. Mysterious Organism Project Mysterious Organism Project
    1
    // Returns a random DNA base
    2
    const returnRandBase = () => {
    3
      const dnaBases = ['A', 'T', 'C', 'G'];
    4
      return dnaBases[Math.floor(Math.random() * 4)];
    5
    };