Skip to content

Instantly share code, notes, and snippets.

@jacobshenning
Created November 17, 2017 19:09

Revisions

  1. jacobshenning created this gist Nov 17, 2017.
    5 changes: 5 additions & 0 deletions StringTen.js
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,5 @@

    // Determines if the string length is greater than 10. Mainly just testing out GitHub Gists
    function StringLengthOverTen(string) {
    return string.length > 10;
    }