As I was reading this article about javascript patterns/anti patterns-
Then - I saw this part :
// named function expression + 'F'
// Benefits:
// 1. Get's rid of (anonymous function) in stack traces
// 2. Recurse by calling the name + 'F'
// 3. Doesn't break an IE (well, unless there's a function name collision of the sort described here: https://github.com/jashkenas/coffee-script/issues/366#issuecomment-242134)
var getData = function getDataF () {}; //<----- notice ends with F
As opposed to the prev example :
var getData = function getData () {};
Question :
What is this thing with functions ending with F ? IS there really differnce if function ends with F or not (according to the article , there is)? what is the official name for this psotfix with F?
In short : https://i.sstatic.net/NwvWa.jpg
edit
I didnt see that the variable name is the same as the function name which is apprently what they wanted to say...
myfuncvsmyfuncFthat's what the question is actually about. ( removed the wordsyntaxas it probably confusing)