code-tidbits icon indicating copy to clipboard operation
code-tidbits copied to clipboard

JS, CSS, HTML code tidbits. New post every week on Twitter & Instagram πŸ”₯

Results 8 code-tidbits issues
Sort by recently updated
recently updated
newest added

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...