I have this simple example below which uses trim. As per the title of the question, is there any difference between them?. As you can see below they have the same output. If the answer is "No", which one is much better to use?
Currently I use .trim()
because it's my first time seeing $.trim()
.
var SampleTrim = ' TRIM ';
console.log(SampleTrim.trim());
console.log($.trim(SampleTrim));
<script src=".1.1/jquery.min.js"></script>
I have this simple example below which uses trim. As per the title of the question, is there any difference between them?. As you can see below they have the same output. If the answer is "No", which one is much better to use?
Currently I use .trim()
because it's my first time seeing $.trim()
.
var SampleTrim = ' TRIM ';
console.log(SampleTrim.trim());
console.log($.trim(SampleTrim));
<script src="https://ajax.googleapis./ajax/libs/jquery/2.1.1/jquery.min.js"></script>
Share
Improve this question
edited Mar 31, 2017 at 2:17
Yangshun Tay
53.3k33 gold badges123 silver badges150 bronze badges
asked Mar 31, 2017 at 2:08
KiRaKiRa
9243 gold badges19 silver badges46 bronze badges
1
- 2 You can refer jsperf./jquery-trim-vs-string-prototype-trim/11 for performance. – Sumit Gulati Commented Mar 31, 2017 at 2:14
3 Answers
Reset to default 9String.prototype.trim
is not available below IE9, otherwise they are the same.
The remended String.prototype.trim
polyfill on MDN is exactly the same as that used in jQuery source.
In most cases, the native implementation would be faster to use. This JSPerf by Sumit Gulati suggests that too.
Realistically, the difference in performance would be quite negligible and I wouldn't base my decision on performance. However, it would be better to use the native implementation so that there's no dependency on jQuery. The large websites have dropped support for IE8 and I think it's safe to follow suit (:
jQuery's trim()
function was available long before JavaScript's native trim()
function was added, which is available in browsers above IE9 and the like.
Use the native trim function for future projects.
As I know, SimpleTrim.trim() is a native way to trim a string that modern brower support.
And $.trim(SimpleTrim) is another way that jQuery help user in the past to trim string, when browser does not support native trim.