Created
December 11, 2021 01:06
-
-
Save leeyspaul/5a60da9292c1249bcae996879efe14cb to your computer and use it in GitHub Desktop.
Revisions
-
leeyspaul created this gist
Dec 11, 2021 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,7 @@ import Foundation let date = Date() let df = DateFormatter() df.dateFormat = "MMM d, yyyy" // prints out "Dec 10, 2021" print(df.string(from: date))