Ask for a rule! Get the number and process it, and then replace the original number.

const datas =[
    "https://img.codeshelper.com/upload/img/2021/03/09/1tcsu5c0vun5800.png",
    "https://img.codeshelper.com/upload/img/2021/03/09/mc3p5hxjed25801.png",
    "https://img.codeshelper.com/upload/img/2021/03/09/b0sxsffftej5802.png",
] 

the number in the regular picture is divided by 2640 wh? 2360 wh? 2, and replaced with "the picture name is fixed in the https://img.codeshelper.com/upload/img/2021/03/09/xmpnxawxh0z5803.png", address," picture _ name &? .png "


datas.join(",").replace(/\d+/g,function(match){
    return (+match)/2;
}).split(",");
Menu