Skip to content
View jcstang's full-sized avatar

Block or report jcstang

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. not-reddit not-reddit Public

    Not reddit, it's called Seenit. Discover new things, argue with internet strangers, and hopefully enjoy a couple cat videos along the way. MERN stack with React Hooks.

    JavaScript 5 1

  2. react-portfolio react-portfolio Public

    Jacob Stanger, Full Stack Web Developer. Built with React, React hooks to showcase my ability to create a react app AND showcase my other projects.

    JavaScript 1

  3. Enums with Associated Values Enums with Associated Values
    1
    enum Activity {
    2
        case bored
    3
        case running(destination: String)
    4
        case talking(topic: String)
    5
        case singing(volume: Int)
  4. palindrome.js palindrome.js
    1
    function checkPalindrome(inputString) {
    2
        return inputString == inputString.split('').reverse().join('');
    3
    }