It’s time to free JavaScript
Published: (December 4, 2025 at 04:01 AM EST)
1 min read
Source: Hacker News
Article URL: https://javascript.tm/letter Comments URL: https://news.ycombinator.com/item?id=46145365 Points: 17 Comments: 1...
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...