Nilesh Patil
03/11/2021, 9:29 AMbattk
03/11/2021, 9:32 AMbattk
03/11/2021, 9:33 AMNilesh Patil
03/11/2021, 9:34 AMbattk
03/11/2021, 9:35 AMNilesh Patil
03/11/2021, 9:38 AMif (!String.prototype.includes) {
String.prototype.includes = function(search, start) {
'use strict';
if (search instanceof RegExp) {
throw TypeError('first argument must not be a RegExp');
}
if (start === undefined) { start = 0; }
return this.indexOf(search, start) !== -1;
};
}
battk
03/11/2021, 9:39 AMbattk
03/11/2021, 9:39 AMNilesh Patil
03/11/2021, 9:41 AMbattk
03/11/2021, 9:42 AMNilesh Patil
03/11/2021, 9:42 AMtuli
03/11/2021, 1:27 PMbattk
03/11/2021, 7:40 PMbattk
03/11/2021, 7:41 PMNilesh Patil
03/12/2021, 10:49 AM