Author: Not specified | Language: javascript |
Description: Not specified | Timestamp: 2018-04-17 10:31:40 +0000 |
View raw paste | Reply |
- var str = 'This is a single string! Yes it can be used with find.';
- console.log( _.find(str,function(el,i,col){
- return el === '!';
- }) ); // !
View raw paste | Reply |