That function will be used to calculate the timestamp for the posts, so if now it is 8pm and the post was created at 7:12pm, your function should create the string "48m ago"
I understand what they wanted from the beginning but its saying RETURN the STRING “XM AGO”
See whats between the quotes? “XM” and “AGO”. I cant be the only one thats thinking they want you to write “XM AGO” after RETURN.
Should it be hinting you towards writing AT LEAST “m ago” ??? or x “m ago” ??? come on man.
Are you a bot? I’m genuinely asking because I wrote that I understand the issue and wrote the issue with bold letters. FCC is asking you to write “XM AGO” in between the double quotes.
Question, did you read: return the string “xm ago”
Where FCC literally tells you to write the string "xm ago" instead of telling you to write x "m ago". As I’m trying to explain. I can understand that “xm” just means x amount of minutes but that does not make sense if youre telling the user to literally write.
Thank you for helping make FCC better. Bugs can be reported as GitHub Issues. Whenever reporting a bug, please check first that there isn’t already an issue for it and provide as much detail as possible.
Using “x”, or “n”, or some other letter as a placeholder is common practice. For numbers, using “#” is fairly common as well. It tells you what the placeholder represents right after it.
Some examples:
Return the string "x was rolled". x represents the random number you generated.
Return the string "n is not a passing score". n represents the score you calculated.
Return the string "# is not a valid input". # represents the number the user gave as an input.
Anyway, if you think it can be clarified better, we are always open for changes and suggestions.