Created
November 5, 2015 00:35
-
-
Save springcome/103744fab8a2451cb721 to your computer and use it in GitHub Desktop.
JQuery substring example
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$(document).ready(function(){ | |
var txt = 'abcd1234'; | |
var substringTxt = txt.substring(0, 3); | |
console.log(substringTxt); | |
}); | |
// result - abc |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment