上QQ阅读APP看书,第一时间看更新
Exercise – adding two else if clauses to an if block
Now, what I'd like you to do is add two more else if clauses to our if block, which will be as follows:
- One will be for the read command, which will be responsible for getting an individual note back
- Another one called remove will be responsible for removing the note
All you have to do is add the else if statement for both of them, and then just put a quick console.log printing something like Fetching note or Removing note.
Take a moment to knock that out as your challenge for this section. Once you add those two else if clauses, run both of them from the Terminal and make sure your log shows up. If it does show up, you are done, you can move ahead with this section.