Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

iOS Swift Functions and Optionals Parameters and Tuples Tuples

Howie F
Howie F
1,710 Points

It's very confusing when the name of the function ("greeting") is the same as the name of a parameter/variable ("greetin

I find myself replacing the parameter/variable names with x, y, z to help me understand the concepts better.

Is this (i.e., functions and parameters/variables having identical names) something I need to get used to?

tuples.swift
func greeting(person: String) -> (greeting: String, language: String) {
    let language = "English"
    let greeting = "Hello \(person)"

    return greeting (greeting, language)
}

1 Answer

I'd actually start to make your own param/functions that names fit your own style of coding. When your projects begin to get bigger and bigger, the more clearly named options win. For your code I'd do something like:

func greeting(person: String) -> (myGreeting: String, language: String) {
    let language = "English"
    let myGreeting = "Hello \(person)"

    return greeting (myGreeting, language)
}

That way it's clearer to you, and also anyone else who is reading your code.