Skip to content
View neilwave's full-sized avatar
💭
🐙
💭
🐙
Block or Report

Block or report neilwave

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

  1. JavaScript30 JavaScript30 Public

    Forked from wesbos/JavaScript30

    30 Day Vanilla JS Challenge

    HTML

  2. anojs anojs Public

    Forked from ano-js/anojs

    Ano.js Animation JS Files

    JavaScript

  3. recursion function recursion function
    1
    // a recursive function is a function that calls itself
    2
    
                  
    3
    const factorial = function recurse(n) {
    4
        if(  n <= 1 ) {
    5
            return 1;