code-tidbits
code-tidbits copied to clipboard
JS, CSS, HTML code tidbits. New post every week on Twitter & Instagram π₯
Add missing semicolon so it works, π―real Tested in chrome
Tasks: :bug:- Correct translation for article 05. :alien: - Translation for articles 6, 7, 8 and 9. :bug: - Apply some code changes for original articles 7, 8 and 9.
Voice from the Chinese world π
### Multiple Default Parameters ``` function marryMe(yes = 'I will', prince = 'Harry') { console.log(yes); console.log(prince); } marryMe(); // yes // Harry ``` to ``` function marryMe(yes = 'I will',...
It logs the default value since arguments are not passed
This website seems very nice and useful resource. It is not just good UI design but included with many necessary resources that fulfill web development knowledges. Thanks for sharing good...