Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
function c(a, b) {
return [`${a}${b}`, a];
}
const d = c("1", "2");
const [e, f] = d;