[Python] 함수(Function) 1. 함수 - def 함수선언: def open_account(): print("New account has been opened.") def deposit(balance, money): print("Deposit is finished. the balance is {0}.".format(balance + money)) return balance + money def withdraw(balance, money): if money Self-study/Python 2023.12.27
[JavaScript] 함수/ Scope/상수 함수에서 return문을 따로 작성하지 않으면 'undefined' 출력 파라미터에 아무값도 넣지 않으면 'undefined' 출력 옵셔널 파라미터(Optional Parameter) ※ 가장 뒤쪽으로 선언해줘야지 밀리지 않음 주의! function introduce(name, age, nationality = 'Korea'){ console.log(`My name is ${name}.`); console.log(`I am ${age} years old.`); console.log(`I am from ${nationality}.`); } introduce('moon', 25, 'Canada') // 값을 모두 전달한 경우 => nationality가 Canada로 뜸 introduce('Dong', 30.. Self-study/Javascript 2023.08.25