Javascrip Fetch example console Fetch example2021var myHeaders = new Headers();
myHeaders.append("Authorization", "Basic bWljcm9zaXRlOlhhWkxwd1dieER4eW00N1Y=");
myHeaders.append("Content-Type", "application/json");
var raw = JSON.stringify({
"Usern…Read More
JavaScript: Replace & Replace All & Replace Regex
Replace
JavaScript 2017
var a = 1,999,999.00 ;
//Replace
var b = a.replace(',' , '');
Output: 1999,999.00
//Replace ALL
while (a.indexOf(',') !== -1)
{
b = a.replace(',' , '');
}
Output: 1999999.00
//Replace ALL + …Read More
Html form send email via google script without server Html form send email via google script without serverClone template from hereFrom address xxxA@gmail.com2021/***************************************************** * This file was written on xxxA@gmail.com…Read More
Regex : QRCode type detection - Javascript QRCode type detection - JavascriptQRCode type detection2021let TYPE_TEXT = "TEXT";let TYPE_URL = "URL";let TYPE_PHONE = "PHONE NUMBER";let TYPE_WIFI = "WI…Read More
0 nhận xét:
Post a Comment