UPGRADE YOUR SKILLS: Learn advanced Swift and SwiftUI on Hacking with Swift+! >>

Spot the error

This Swift code contains one error – can you select the line that is incorrect?

Tip: You should mentally run the code from top to bottom, meaning that if line 3 says an integer should be returned and line 10 tries to return a string, line 10 is the wrong one.

func sectionForPage(_ pageNumber: Int) -> String {
    var result: String = "Turning to page \(pageNumber)..."
    if pageNumber < 10 {
        result += "The title is Introduction"
    } else if pageNumber < 20 {
        result += "The title is Reviews"
    } else if pageNumber < 30 {
        result += "The title is Features"
    } else {
        result += "The title is Tutorials"
    }
    return result
}
print(sectionForPage(pageNumber: 16))
BUY OUR BOOKS
Buy Pro Swift Buy Pro SwiftUI Buy Swift Design Patterns Buy Testing Swift Buy Hacking with iOS Buy Swift Coding Challenges Buy Swift on Sundays Volume One Buy Server-Side Swift Buy Advanced iOS Volume One Buy Advanced iOS Volume Two Buy Advanced iOS Volume Three Buy Hacking with watchOS Buy Hacking with tvOS Buy Hacking with macOS Buy Dive Into SpriteKit Buy Swift in Sixty Seconds Buy Objective-C for Swift Developers Buy Beyond Code
 
Unknown user

You are not logged in

Log in or create account
 

Link copied to your pasteboard.