how to return the value of a function code example
Example 1: function and returns node js
function hello(name) {
console.log("hello " + name);
}
hello("CSS");
//hello CSS
Example 2: how to set the return value of a function in pytohn
def showPrompt(symbol :str, container :str) -> None:
while container.lower() != "exit":
container = str(input(symbol))