Skip to content

Instantly share code, notes, and snippets.

@dannko
Created June 2, 2014 16:32
Show Gist options
  • Save dannko/3c60f63aec419244a5d6 to your computer and use it in GitHub Desktop.
Save dannko/3c60f63aec419244a5d6 to your computer and use it in GitHub Desktop.
Обрезать текст до 2к символов на .js
var str = "{-Variable.article_for_js-}";
str = str.substr(0, 2000);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment