syntax of closures
/*
{ (parameters) -> return type in
body
}
*/
var numbers = [1, 2, 3, 4]
var reversed = numbers.sorted(by: {(a: Int, b: Int) -> Bool in
return a > b
})
syntax of closures
/*
{ (parameters) -> return type in
body
}
*/
var numbers = [1, 2, 3, 4]
var reversed = numbers.sorted(by: {(a: Int, b: Int) -> Bool in
return a > b
})
closures
{ (parameters) -> returnType in
// statements
}
A closure Function
var returns_a_func = function () {
var word = 'I can see inside ' function sentence(){ var word2 = 'I can also see outside. ' console.log(word + 'and ' + word2) } return sentence;
}var finalSentence = returns_a_func()finalSentence()
A closure Function
Cannot GET /about-us.html
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us