We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
C# Substring method takes start index + length (http://msdn.microsoft.com/en-us/library/aka44szs%28v=vs.110%29.aspx) It gets translated to JS substring method that takes start index + end index (http://www.w3schools.com/jsref/jsref_substring.asp)
Instead shouldn't it be translated to substr method(http://www.w3schools.com/jsref/jsref_substr.asp)? It takes same parameters as C#.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
C# Substring method takes start index + length (http://msdn.microsoft.com/en-us/library/aka44szs%28v=vs.110%29.aspx)
It gets translated to JS substring method that takes start index + end index (http://www.w3schools.com/jsref/jsref_substring.asp)
Instead shouldn't it be translated to substr method(http://www.w3schools.com/jsref/jsref_substr.asp)? It takes same parameters as C#.
The text was updated successfully, but these errors were encountered: