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 trialHuseyn Guliyev
2,603 PointsIn 03:52, he wrote ("name": Pasan). Is it the same as (var name: String = Pasan)
I think i already described my question in the title
1 Answer
Gavin Butler
iOS Development with Swift Techdegree Graduate 15,489 PointsHi Huseyn, Sort of but not exactly. The ["name" : "Pasan"] is a dictionary entry consisting of a String as the key ("name") and another string "Pasan" as its value. var name: String = "Pasan" is assigning a string value to the variable called name. There are similarities as both are referring to a value of type string called "Pasan" but they do it differently. - the dictionary by looking up a key, the variable by assignment and storage. Hope this helps.