Conversation
✅ Deploy Preview for javascript-note ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
|
|
||
| ```js {monaco-run} {autorun: false} | ||
| // alert(true || false); // alert('Boy' || 4) | ||
| alert(true || false); alert('Boy' || 4) |
There was a problem hiding this comment.
Prefer console.log() over alert on this line
| if (size == 20) { | ||
| // alert('Your size is 20') | ||
| // alert('Thank you') | ||
| alert('Your size is 20') |
There was a problem hiding this comment.
Prefer console.log over alert here. and the line below it.
| // alert('Your size is 20') | ||
| // alert('Thank you') | ||
| alert('Your size is 20') | ||
| alert('Thank you') |
There was a problem hiding this comment.
Prefer console.log over alert here.
|
You will need to pull in the latest update merged into your fork. If you are working on the web, you needs to sync your fork with the main project. When you are within your work, locate the commits and look for sync fork with the main. If you are working on the local, your IDE - You should pull from the upstream(Oluwasetemi/react-note). git remote add upstream https://github.com/Oluwasetemi/react-note
git pull upstream mainYou will have to fix the conflict on your IDE, accept incoming changes and later ensure your fixes are still present. Do ask any question for clarification. |
|
Fixed this for you |
Code block bocking issue