The high level abstraction are functions that you create, like searchForsomething()
searchForsomething()
The medium level are methods in your object, like account.unverifyAccount
account.unverifyAccount
The low level are methods that the language provides, like map, to_downncase and so on (:
map
to_downncase
I believe repeating "Account" in account.unverifyAccount is not required. Do you think it is? Why?
The Account in unverifyAccount is clearly an unnecessary addition of context. Thank you for the review
Ahhh!Thanks!Sorry, was pretty clear now that I get it :)
Very nice article, I'am looking forward for the others.
We're a place where coders share, stay up-to-date and grow their careers.
We strive for transparency and don't collect excess data.
re: Identifying the dirt in our code - names, functions, and comments VIEW POST
TOP OF THREAD FULL DISCUSSIONThe high level abstraction are functions that you create, like
searchForsomething()
The medium level are methods in your object, like
account.unverifyAccount
The low level are methods that the language provides, like
map
,to_downncase
and so on (:I believe repeating "Account" in account.unverifyAccount is not required. Do you think it is? Why?
The Account in unverifyAccount is clearly an unnecessary addition of context. Thank you for the review
Ahhh!Thanks!Sorry, was pretty clear now that I get it :)
Very nice article, I'am looking forward for the others.