JS Bits with Bill
JS Bits with Bill

JS Bits with Bill

Follow
Follow
homeTikTokInterviews
Tag

JavaScript

#javascript

More content

Read more stories on Hashnode


Articles with this tag

HTML <dialog>

Nov 18, 20212 min read

HTML's <dialog> element is a built-in tag to represent a dialog box or modal. It's not just a newer semantic element, it also includes an API and its...

HTML <dialog>

Easy console.log() inside one liner functions

Nov 10, 20211 min read

Let's say we want to log obj inside this .map() function here: const arr = [ { val: 1 }, { val: 2 }, { val: 3 } ]; const nums = arr.map(obj =>...

Easy console.log() inside one liner functions

What JavaScript looked like in 1996

Nov 4, 20211 min read

Check out this very early JavaScript guide book I got from eBay. It was released in 1996 and is only the beta edition back when JS was just born! 👶...

What JavaScript looked like in 1996

Creating a Text-To-Speech program in Vanilla JS

Oct 29, 20212 min read

If you haven't been too traumatized from using a Microsoft browser, you might have discovered Edge's built-in "Read Aloud" feature which will speak...

Creating a Text-To-Speech program in Vanilla JS

3 Uncommon but useful HTML elements

Oct 20, 20211 min read

1) <abbr> The abbreviation <abbr> element is used to represent an acronym or abbreviation. If you include a title attribute, the text will be display...

3 Uncommon but useful HTML elements

Collapsable content in Markdown with <details>

Oct 11, 20211 min read

Pro Tip: The HTML disclosure summary element (<details>) works with markdown so you can create collapsable sections in your READMEs like so: <!--...

Collapsable content in Markdown with <details>