Programming in Swift: Fundamentals

Oct 19 2021 · Swift 5.5, iOS 15, Xcode 13

Part 5: Functions & Named Types

37. Challenge: Functions

Episode complete

Play next episode

Next
About this episode

Leave a rating/review

See forum comments
Cinema mode Mark complete Download course materials
Previous episode: 36. Functions & Return Next episode: 38. Structures

Get immediate access to this and 4,000+ other videos and books.

Take your career further with a Kodeco Personal Plan. With unlimited access to over 40+ books and 4,000+ professional videos in a single subscription, it's simply the best investment you can make in your development career.

Learn more Already a subscriber? Sign in.

Notes: 37. Challenge: Functions

Update Notes: The student materials have been reviewed and are updated as of October 2021.

Heads up... You’re accessing parts of this content for free, with some sections shown as obfuscated text.

Heads up... You’re accessing parts of this content for free, with some sections shown as obfuscated text.

Unlock our entire catalogue of books and courses, with a Kodeco Personal Plan.

Unlock now

It’s time for your next challenge! You can find the challenge in the “04 - Challenge - Functions” page of the playground you’ve been using, or you can download a new one from the resources for this video. Open it up, and try solving the challenge questions on your own, then keep watching to compare your work to mine. Good luck!

func printFullName(firstName: String, lastName: String) {

}
  print(firstName + " " + lastName)
printFullName(firstName: "Chris", lastName: "Belanger")
func printFullName(_ firstName: String, _ lastName: String) {
printFullName("Chris", "Belanger")
func calculateFullName(_ firstName: String, _ lastName: String) {
  print(firstName + " " + lastName)
}
func calculateFullName(...) -> String {
  return firstName + " " + lastName
let fullName = calculateFullName("Chris", "Belanger")