K
K
kr_ilya2019-07-14 18:25:32
Node.js
kr_ilya, 2019-07-14 18:25:32

How to return to the beginning of the script or re-run it in node.js?

Suppose, as a result of the execution of a number of functions, you need to return to the beginning. In php, I used goto, but what about in node? Here is a sketch of my structure

request.get("https://api.com").then(res=>{
   //сюда перейти
    const result = a(res.id, res.title) 
    console.log(result)
});

const a = (key, title) => {
    var int1 = 11
    var int2 = int1 * 3
    return b(int1, int2, c)
}
const b = (i1, i2, function_c) => {
    var1 = 'blyaxa'
    var2 = 'muxa'

    if(var1 == var 2){ 
        перейти в начало к вызову функции a
    }

    return function_c(var1, var2)
}
const c = (var1, var2) => {
    var slovo = var1 + " " + var2
    return slovo
}

Answer the question

In order to leave comments, you need to log in

1 answer(s)
A
Anton Shvets, 2019-07-14
@kr_ilya

There are no such cases when goto would be needed and it is not in the language. Learn to code.
Specifically, in your case it is not clear what you want, it is no good. Here, damn it, only goto is not enough for a complete ....

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question