Closed kirandash closed 1 year ago
Hello, I would like to take on the task.
Hello,
I would like to take on the task.
Awesome! Thanks for showing your interest @murat114. I have now assigned the task to you.
If you need any help, you can comment here or reach me on discord at:
Thank you to assign me the task 👍
Hi @murat114, I just noticed that there is already a PR for this issue at https://github.com/bgwebagency/who-wants-to-be-a-javascriptaire/pull/20 by another user although this issue was not assigned to them.
Is it ok if you pick any issue other than #14 and #7 since there are PRs for these two issues.
But if you have already started working on it then I will not use their PRs. Since you are assigned to this task
Hi @kirandash, I have already started the work and wanted to finish it by next week at the latest. But if there is no other way I could start the task Create MCQA for Date() class #16. That would not be a problem for me.
Hi @kirandash, I have already started the work and wanted to finish it by next week at the latest. But if there is no other way I could start the task Create MCQA for Date() class #16. That would not be a problem for me.
Thanks a lot for understanding! Since there's another PR for this task already, I don't want their effort to be wasted. If you have not finished working on this, I think it will be better if you can work on #16. But please comment there first so that I can assign you.
You are welcome @kirandash
Thanks @Vida-1 for working on this. Much appreciated!
Please create an MCQA to be added as question number 29.
The multiple choice question should be on the topic
.sort()
method of an array. The difficulty level should be "Medium/Hard"Tasks:
Explanation:
arr.sort()
: sorts alphabetically when arr is of stringsSample interview question for inspiration
["bgwebagency", 1, 2, 3, 4, undefined, 11, 9, 1000, "apple", undefined].sort()
?[1, 1000, 11, 2, 3, 4, 9, 'apple', 'bgwebagency', undefined, undefined]
undefined
values are moved to the end