> How to use map array method in appscript
एक्सेल और एडवांस एक्सेल से जुड़े सभी लेटेस्ट विडियो पाने के लिए मेरे यूट्यूब चैनल को अभी सबस्क्राइब करे लिंक नीचे है धन्यवाद |

How to use map array method in appscript

 How to use map array method in appscript

दोस्तों आज के इस आर्टिकल में हम App-script Map Method के बारे (How to use map array method in appscript) में जानेंगे यह एक Array का फंक्शन होता है | जब हम Map method का इस्तेमाल करते हैं तो यह Array के हर एक वैल्यू के लिए रन करता है क्योंकि Map method एक callback फंक्शन होता है | यदि हम इसकी लिखने के तरीके को समझें तो सबसे पहले हमारा जो भी Array का नाम होता है सबसे पहले उस Array का नाम लिखना होता है उसके बाद डॉट लगाकर के map method का इस्तेमाल करते हैं |

Read also - index of method in appscript

Read Also- Local variable and Global variable in appscript in hindi

Syntex of map method

arrayname.map(function(value as a object,index; Number,array :object) इसमें index और Array एक ऑप्शनल पैरामीटर होते हैं इसका मतलब यह है कि आप इन parameter का इस्तेमाल कर सकते हैं और नहीं भी कर सकते हैं|

 इसे हम नीचे दिए गए कोड से समझ सकते हैं क्योंकि इस code के माध्यम से हमने डाटा को स्प्लिट कैसे किया जाता है इसके बारे में बताया है |


var mapMethod = mapDat=>{

var ss = SpreadsheetApp.getActiveSpreadsheet().getSheetByName('');
var lastRow = ss.getLastRow();
var dataRange = ss.getRange('A2:A'+lastRow).getValues();
var result =dataRange.map(function(data) {
return [data[0].split(" ")[0],data[0].split(" ")[1],data[0].split(" ")[2],data[0].split(" ")[3],data[0].split(" ")[4],data[0].split(" ")[5]];
});

ss.getRange(2,2,result.length,result[0].length).setValues(result);

dataRange.map()
}

एक टिप्पणी भेजें

2 टिप्पणियाँ

Thanks For Message Me if any issue please feel free to contact