Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update README.md && Attempt to make code concise. #2993

Closed
wants to merge 1 commit into from

Commits on May 31, 2024

  1. Update README.md

    We can shorten it like this so it's easier to read.
        function dogs(x) {
          if (x) {
            if (z) {
              return y;
            }
          } else {
            return z;
          }
        }
    /////////////////////////////////////////////////////
    function dogs(x) {
       if(x && z) return y;
       if(!x) return z;
    }
    aadil42 authored May 31, 2024
    Configuration menu
    Copy the full SHA
    04bf11b View commit details
    Browse the repository at this point in the history