Class A {
callUpdate() {
// how to call the update function from here
}
create() {
function update() {
// do something
}
}
}
How to call local function outside which declared inside the function?