Zum Hauptinhalt springen
tsecurity.de LIVE
Echtzeit-Radar & Feeds
Alle RSS Feeds
👥 Community & Social
YouTube Security VideosWelcome to GitHub Copilot Day: the future of agentic engineering(22.09.2026 um 20:00 Uhr)
YouTube Security VideosMicrosoft Mechanics: What Can a Copilot Agent Actually Read?(22.09.2026 um 20:27 Uhr)
Unix & Linux ServerPeppermintOS Is Moving From Xorg to XLibre to Avoid Wayland(22.09.2026 um 19:58 Uhr)
Sicherheitslücken (CVE)USN-8803-1: Sudo vulnerability(22.09.2026 um 16:15 Uhr)
Sichere ProgrammierungClaude Opus 5.5 is now available in GitHub Copilot(22.09.2026 um 19:10 Uhr)
Sichere ProgrammierungColab is now part of your Google AI plan(22.09.2026 um 20:51 Uhr)
Sichere ProgrammierungThe Hidden Production Risks of Third-Party SDKs(22.09.2026 um 20:00 Uhr)
YouTube Security VideosWelcome to GitHub Copilot Day: the future of agentic engineering(22.09.2026 um 20:00 Uhr)
YouTube Security VideosMicrosoft Mechanics: What Can a Copilot Agent Actually Read?(22.09.2026 um 20:27 Uhr)
Unix & Linux ServerPeppermintOS Is Moving From Xorg to XLibre to Avoid Wayland(22.09.2026 um 19:58 Uhr)
Sicherheitslücken (CVE)USN-8803-1: Sudo vulnerability(22.09.2026 um 16:15 Uhr)
Sichere ProgrammierungClaude Opus 5.5 is now available in GitHub Copilot(22.09.2026 um 19:10 Uhr)
Sichere ProgrammierungColab is now part of your Google AI plan(22.09.2026 um 20:51 Uhr)
Sichere ProgrammierungThe Hidden Production Risks of Third-Party SDKs(22.09.2026 um 20:00 Uhr)
Intelligence View
⚡ tsecurity.de Intelligence

Learning about JavaScript/ECMA Script

What is JavaScript and current version? JavaScript (JS) is one of the most widely used programming languages in web development. It is used to create interactive and dynamic web pages. Examples: Button click actions Form…

0
↗ Quelle (dev.to)
Reagiere als Erste:r — dein Feedback zählt!




What is JavaScript and current version?



JavaScript (JS) is one of the most widely used programming languages in web development. It is used to create interactive and dynamic web pages.



Examples:




  • Button click actions

  • Form validation

  • Animations

  • Web applications

  • Real-time updates



Today, JavaScript is used not only for websites but also for backend development and mobile applications.



JavaScript is a versatile, dynamically typed programming language that brings life to web pages by making them interactive. It is used for building interactive web applications and supports both client-side and server-side development.




  • Interpreted language: Code is executed line by line.

  • Dynamically typed: Variable types are determined at runtime.





JavaScript versions are called ECMAScript versions (ES1, ES5, ES6, ES2020, etc.)





HISTORY OF JAVASCRIPT











How JavaScript Started



In May 1995, JavaScript was created by Brendan Eich at Netscape.



Interesting fact: JavaScript was developed in just 10 days.



JavaScript went through multiple names:



Mocha



LiveScript



JavaScript



What makes JavaScript unique



JavaScript is a unique and essential programming language with several key features and capabilities that make it distinguished from the other languages. The following are the reasons why JavaScript is unique.




  1. Client-side dominance

  2. Full-stack development

  3. Asynchronous programming

  4. Event-driven programming

  5. Interpretation

  6. Just-in-time compilation

  7. Frameworks and Libraries

  8. Active Community



ADVANTAGES AND DISADVANTAGES OF JS



The advantages of using JavaScript on your website are that it:




  1. Works with all major browsers and devices

  2. Enables interactive features like menus, sliders, tabs, and forms

  3. Is versatile enough for everything from simple animations to fully dynamic experiences

  4. Easily connects with other marketing tools and platforms (like analytics, chat, or email widgets)



The downsides of using JavaScript on your website are that it:




  1. Can sometimes hide important content (like page titles, descriptions, or links) from search engines if those elements depend on JavaScript to load. This can hurt how your site shows up in search results.

  2. Slows down page speed, especially if scripts are large or poorly optimized

  3. May behave differently across some browsers, particularly older ones

  4. Can create security risks if you use untrusted scripts or plugins—JavaScript runs automatically in the browser







JavaScript Ecosystem



Many technologies are built using JavaScript.



Examples:




  • React JS → Frontend UI library

  • Angular → Frontend framework

  • Node.js → Backend runtime environment



These technologies extend JavaScript for different application development purposes.







How Computers Understand Code



Computers understand only binary language:




0 and 1






Programming languages must be translated into machine language.



Two common translation approaches:






1. Interpreter



Converts code line by line.



Example:




JavaScript → Interpreter → Machine Language






Advantages:




  • Easier debugging

  • Executes immediately









2. Compiler



Converts the entire program at once.



Example:




Source Code → Compiler → Machine Code






Advantages:




  • Faster execution after compilation



Note:

Modern JavaScript engines (like V8) use both interpretation and compilation internally for performance.







Why JS is an Interpreter Language?



JavaScript is primarily considered an interpreted language because it is sent to the browser as raw text and translated into machine code "line-by-line" at runtime, making it highly flexible. However, modern engines use a hybrid approach to improve performance.







What is Programming?



Programming means:



Giving instructions to a computer to perform specific tasks.



Example:




Open browser
Display website
Store user data
Calculate result






Applications help businesses manage and process huge amounts of data efficiently.









JavaScript Data Types



Data types define what type of value is stored.






1. Number



Stores normal numeric values.



Example:




let age = 25;












2. BigInt



Stores extremely large numbers.



Example:




let population = 12345678901234567890n;






Unlike Number, BigInt supports values larger than the safe integer range.









3. Boolean



Stores true or false.



Example:




let isLoggedIn = true;












4. String



Stores text values.



Example:




let name = "Annu";












Understanding Bytes and Bits






1 Byte = 8 Bits






Binary uses only:




0 and 1






Example:




2^8 = 256 possible combinations






Signed values can represent:




-128 to 127






JavaScript Number uses 64-bit floating point representation.









Types of Programming Languages






1. Statically Typed Language



Data type must be declared.



Example (Java):




int age = 10;






Rules:




  • Data type mandatory

  • Syntax strict









2. Dynamically Typed Language



Data type is automatically determined.



Example (JavaScript):




let age = 10;






JavaScript decides the type internally.









Variables in JavaScript



Variable:

A named storage location whose value may change.



Example:




let name = "Annu";






Structure:




Variable = Value






Example:




name = "Annu"







  • name → Variable

  • = → Assignment Operator

  • "Annu" → Data



Semicolon (;) is optional in JavaScript but considered a good practice.









Ways to Declare Variables






1. Without Keyword (Not Recommended)






name = "Annu";






Problem:




  • Can create accidental global variables.









2. Using var






var name = "Annu";






Problem:




var name = "Apple";
var name = "Orange";






Redeclaration is allowed.



Not preferred in modern JavaScript.









3. Using let (ES6)






let age = 16;






Features:




  • Cannot redeclare in same scope

  • Value can change



Example:




let age = 15;
age = 20;






Valid.









4. Using const






const price = 99;






Features:




  • Cannot redeclare

  • Cannot reassign



Example:




const price = 99;












JavaScript Versions



JavaScript evolves through ECMAScript versions.



Examples:




ES5
ES6
ES7
ES8
ES9












What is ECMA?




  • ECMA stands for the European Computer Manufacturers Association.

  • It was founded in 1961 as a non-profit industry association to develop standards for information technology, electronics, and programming languages.

  • ECMA is now officially known as ECMA International to reflect its global reach.

  • ECMAScript is the standard specification that defines how JavaScript should work.



ES means:



ECMAScript



It is the official standard specification for JavaScript.



Example:



ES6 (2015) introduced:




  • let

  • const

  • Arrow functions

  • Classes

  • Modules



JavaScript follows ECMAScript standards.






References :



https://www.w3schools.com/whatis/whatis_js.asp

https://www.semrush.com/blog/javascript/

https://www.geeksforgeeks.org/javascript/introduction-to-javascript/

https://developer.mozilla.org/en-US/docs/Learn_web_development/Core/Scripting/What_is_JavaScript

https://mvjce.edu.in/blog/evolution-of-javascript/

Ähnliche Beiträge
🔍 Verwandte News

Auch interessante Nachrichten Learning about JavaScript/ECMA Script

Thematisch verwandte Begriffe: Learning, about, JavaScriptECMA, Script · 6 Treffer

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Zum Aktualisieren ziehen
ZERO-DAY CVE-2026-75517 | Novu provides an API for sending notifications through multiple channels…
Advisory →
TTS Reader • tsecurity.de Voice
tsecurity.de Icon
tsecurity.de App
Offline-Lesen, Eilmeldungen & 0ms Ladezeit

Installiere tsecurity.de direkt auf deinen Home-Bildschirm für das ultimative Vollbild-Magazinerlebnis ohne Browser-Leisten.

Nächster Beitrag
Themen-Radar & Intelligence Matrix
Echtzeit-Taxonomie nach Angriffsvektoren & Plattformen

tsecurity.de Live Threat Radar

🔴 LIVE RADAR
MONITORING
AKTIV
CVE-DATENBANK
LIVE
🔍
Community Radar & Live Chat
Sentinel Bot online • Live-Stream
Dein Cluster: Security Explorer
Match:
lädt…
Verbindung zum Community-Stream wird aufgebaut...
Bearbeitungsmodus — Senden überschreibt deine Nachricht
Community-Puls — was gerade passiert
lädt…
Aktivitäten deiner Analysten
lädt…
Neues Thema oder Eilmeldung einreichen

Reiche interessante Links, Zero-Days oder Debatten ein. Die Community entscheidet per Upvote über die Veröffentlichung.

Heiß diskutierte Einreichungen
🔖 Gespeicherte Artikel
📂 Keine gespeicherten Artikel vorhanden.
Zurück Ziehen Vor
Links: vorheriger Artikel Rechts: nächster Artikel unten: schließen
News NIS-2 Frühwarnung Tier-1 Intel ⏱️ 3 Min vor 10 Min
Artikeldaten werden geladen...

Zurück: vorheriger Vor: nächster
↗ Original-Quelle
Social Reaktionen Deine Reaktion zählt
Einstufung & Relevanz-Poll 0 Stimmen
In sozialen Netzwerken teilen 1-Klick