Functions
nameFunction() {
}nameFunction(args1, args2) {
}Trigger a function
nameFunction()Return of a function
start() {
str = nameFunction()
}
nameFunction() {
return 'hello'
}Last updated
nameFunction() {
}nameFunction(args1, args2) {
}nameFunction()start() {
str = nameFunction()
}
nameFunction() {
return 'hello'
}Last updated