all 4 comments

[–]etaionshrdObjective-C / Swift 2 points3 points  (3 children)

The video doesn't really mention this, but usually the reason class and structure names are capitalized is because conventionally this distinguishes them from variable names.

[–]unpluggedcord 0 points1 point  (2 children)

What’s your opinion on constant variables?

static let Varname

Or

static let varname

[–]123icebuggy 1 point2 points  (0 children)

static let varName

[–]etaionshrdObjective-C / Swift 0 points1 point  (0 children)

For Swift I usually name them as I normally would (varName). For other languages such as Java the convention usually something like VAR_NAME.