With my tests...
Chrome 22: regular expressions
IE9: str in obj
FF11: str in obj
On Friday, August 24, 2012 10:53:05 PM UTC-4, thor wrote:
Which do you think is more efficient when checking if a string is either "<i>" or "<b>"?var obj = {'<b>': null, '<i>': null};var str = '<i>';var tag = str.search(/<(?:b|i)>/);orvar tag = (str in obj);Thanks!
You received this message because you are subscribed to the Google Groups "JavaScript Forum" group.
To view this discussion on the web visit https://groups.google.com/d/msg/javascript-information/-/FNAI_iUpZl8J.
To post to this group, send email to javascript-information@googlegroups.com.
To unsubscribe from this group, send email to javascript-information+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/javascript-information?hl=en.
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.