diff options
author | Ariel <arikrak@gmail.com> | 2014-03-10 18:08:50 -0400 |
---|---|---|
committer | Ariel <arikrak@gmail.com> | 2014-03-10 18:08:50 -0400 |
commit | 6348a3adde95e72334bf8bfd1ca95079862c1c0b (patch) | |
tree | e8f93999beb25818abd0d034a7246a7c100ae0d0 /javascript.html.markdown | |
parent | 0590851a648b7afbc1fd8df332307688b9784a84 (diff) |
space
Diffstat (limited to 'javascript.html.markdown')
-rw-r--r-- | javascript.html.markdown | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/javascript.html.markdown b/javascript.html.markdown index 03a12372..76017c17 100644 --- a/javascript.html.markdown +++ b/javascript.html.markdown @@ -106,7 +106,7 @@ false; // You can access characters in a string with charAt "This is a string".charAt(0); // = 'T' -//...or use substring to get larger pieces +// ...or use substring to get larger pieces "Hello world".substring(0, 5); // = "Hello" // length is a property, so don't use () |