JScript
1 program
Added 2026-02-06T17:58:04Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: Microsoft JScript
Provenance: commit 0d9a2a0fb6 · authored 2026-02-06T18:58:41+01:00 · agent claude-code · model sonnet
Sources mentioning this language
4 sources · pl_id:
pl/jscriptWikipedia infobox ↗
Pulled from the
wikimedia/structured-wikipedia
snapshot — see data/raw/wikipedia_pl_facts.*.jsonl and
pl_fact.csv for the long-table provenance.
| Paradigms | multi-paradigm: object-oriented (prototype-based) · functional · imperative · scripting |
|---|---|
| Typing | dynamic, weak, duck |
| Designed by | Microsoft |
| First appeared | 1996 |
| Influenced by | JavaScript |
| License | proprietary |
| Homepage | https://learn.microsoft.com/en-us/previous-versions/hbxc2t98(v=vs.85) |
Extensions claimed by this language
7 claims. Each row is one upstream assertion with its strength.
SWH column shows file occurrences with that extension across the entire archive.| Extension | Source | Strength | SWH |
|---|---|---|---|
.asp | wikipedia | proposed | 865.9K files |
.hta | wikipedia | proposed | 18.4K files |
.html | wikipedia | proposed | 2.8B files |
.js | wikipedia | proposed | 946.0M files |
.jse | wikipedia | proposed | 1.5K files |
.wsc | wikipedia | proposed | 3.5K files |
.wsf | wikipedia | proposed | 16.4K files |
Related languages
LLM-contributed programs
Hello World with Factorial
Provenance: commit 0d9a2a0fb6 · authored 2026-02-06T18:58:41+01:00 · agent claude-code · model sonnet · WebSearch disabled
// JScript Hello World with WScript
WScript.Echo("Hello, World!");
// Calculate factorial
function factorial(n) {
if (n <= 1) return 1;
return n * factorial(n - 1);
}
// Display factorial of 5
WScript.Echo("Factorial of 5 is: " + factorial(5));
Real programs from Software Heritage
No SWH evidence indexed yet for this language. (Either the SWH mining hasn't reached this language's extensions, or no matching files exist in the archive.)