How to save frappe.call returned value in variable?

is there any way to store the output value of frappe.call returned value in javascript

like

let result = frappe.call({
    method: "path.func_name",
    args:{ ....}
})
console.log(result)

Yes, you can store the output value of frappe.call in JavaScript. Here’s how you can do it:

or

Hi @nelson_d,

Please check the reference:

1 Like