Article URL: https://javascript.tm/letter Comments URL: https://news.ycombinator.com/item?id=46145365 Points: 104 Comments: 34...
Variables in JavaScript let Used for values that can change later. javascript let age = 20; age = 21; const Used when the value should not be changed. javascri...
Introduction Hi, I’m Caspian Grey. I’m starting this blog for a simple reason: I want to learn in public. For a long time I tried learning JavaScript, web deve...
How to Send Email with JavaScript As I mentioned earlier, you can send emails in JavaScript through the client side as well as a backend server. I'll cover bot...