* fix(learn): address escaped backticks Addresses the instances of escaped backticks - where a backtick is preceded by a backslash. In most cases, this was left over from the old parser. In some cases, a backtick was intended to be wrapped in code tags and has been adjusted accordingly. This issue came to light due to a bug in the translation flow on Crowdin. Signed-off-by: nhcarrigan <nhcarrigan@gmail.com> * fix: EVEN MORE :( :( :( Signed-off-by: nhcarrigan <nhcarrigan@gmail.com> * fix: backslash nightmares Signed-off-by: nhcarrigan <nhcarrigan@gmail.com> * fix: When you wish upon a ******* Signed-off-by: nhcarrigan <nhcarrigan@gmail.com> * fix(curriculum): md error introduced by formatter * fix(curriculum): remove extra `s * fix: restore quote symbol Signed-off-by: nhcarrigan <nhcarrigan@gmail.com> * fix: Typo Co-authored-by: Oliver Eyton-Williams <ojeytonwilliams@gmail.com> * fix: apply review changes Applying review feedback from call with @RandellDawson. Signed-off-by: nhcarrigan <nhcarrigan@gmail.com> * fix: markdown does weird stuff sometimes Can't stick backticks together - use code. Signed-off-by: nhcarrigan <nhcarrigan@gmail.com> Co-authored-by: Oliver Eyton-Williams <ojeytonwilliams@gmail.com>
38 lines
1.5 KiB
Markdown
38 lines
1.5 KiB
Markdown
---
|
|
id: bd7158d8c443eddfaeb5bdef
|
|
title: Build a Voting App
|
|
challengeType: 4
|
|
forumTopicId: 302359
|
|
dashedName: build-a-voting-app
|
|
---
|
|
|
|
# --description--
|
|
|
|
Build a full stack JavaScript app that is functionally similar to this: <https://fcc-voting-arthow4n.herokuapp.com/>. Use a site builder of your choice to complete the project.
|
|
|
|
Here are the specific user stories you should implement for this project:
|
|
|
|
**User Story:** As an authenticated user, you can keep my polls and come back later to access them.
|
|
|
|
**User Story:** As an authenticated user, you can share my polls with my friends.
|
|
|
|
**User Story:** As an authenticated user, you can see the aggregate results of my polls.
|
|
|
|
**User Story:** As an authenticated user, you can delete polls that I decide I don't want anymore.
|
|
|
|
**User Story:** As an authenticated user, you can create a poll with any number of possible items.
|
|
|
|
**User Story:** As an unauthenticated or authenticated user, you can see and vote on everyone's polls.
|
|
|
|
**User Story:** As an unauthenticated or authenticated user, you can see the results of polls in chart form. (This could be implemented using Chart.js or Google Charts.)
|
|
|
|
**User Story:** As an authenticated user, if you don't like the options on a poll, you can create a new option.
|
|
|
|
When you are done, make sure a working demo of your project is hosted somewhere public. Then submit the URL to it in the `Solution Link` field. Optionally, also submit a link to your project's source code in the `GitHub Link` field.
|
|
|
|
# --solutions--
|
|
|
|
```js
|
|
// solution required
|
|
```
|