We came across a repo on GitHub that lets you write JavaScript Code in the Swedish language.
The Author of this script has replaced java with Fika (fee-ka). Lateral translation from Swedish to English is "to drink coffee".
Let's see an Example Note :1. You need to make sure that the Webpage supports UTF-8 characters.
2. And you need to add two js libraries fikascript.js and fikascript.browser.js
3. While using fikascript you need to set the script MIME type as text/fikascript
4. And yes you need to know the js keywords translations.
List
1. Keywords
function: funktion
if: om
else: annars
for: för
while: medan
return: returnera
do: gör
var: var
in: inuti
let: låt
new: ny
try: försök
case: fall
this: detta
with: med
break: bryt
throw: kasta
catch: fånga
switch: byt
continue: fortsätt
debugger: avlusare
instanceof: instansav
typeof: typav
void: tom
delete: tabort
default: standard
finally: slutligen
2. Literals
true: sant
false: falskt
null: noll
3. Identifiers
document: dokument
console: konsol
alert: ropa
prompt: fråga
Example :
<html>
<head>
<title>FikaScript: JavaScript in Swedish Example</title>
<meta charset="utf-8">
<script type="text/javascript" src="dist/fikascript.js"></script>
<script type="text/javascript" src="dist/fikascript.browser.js"></script>
</head>
<body>
<script type="text/fikascript">
ropa("Hej!! Hallå!!");
</script>
</body>
</html>
Source: https://github.com/pushmatrix/fikascript

- How to get UTC (GMT) time using JavaScript
- Submit html form on dropdown menu value selection or change using javascript
- How to detect Browser and Operating System Name and Version using JavaScript
- JavaScript : Get current page address
- [javaScript] Convert text case to lowercase
- How to check if a String contains substring or a word using javaScript
- Writing your first Hello, World! 🌍 JavaScript code Tutorial
- JavaScript: Check if variable is a number
- How to send email from JavaScript HTML using mailto
- Meaning of javascript:void(0) explained with example
- How to get query string in JavaScript HTML location.search
- Javascript convert text case from uppercase to lowercase
- Loading previous page using html button using JavaScript
- JavaScript : Get url protocol HTTP, HTTPS, FILE or FTP
- How to get current URL Location using Javascript HTML
- Detect if Cookies are enabled using JavaScript
- Write javaScript code in Swedish using FikaScript
- Add Animated Scrolling to Html Page Title Script
- JavaScript: Convert an Image into Base64 String
- Remove items from JavaScript array
- Send Extra Data with Ajax Get or Post Request
- How to Print from JavaScript HTML using window.print
- Get Device Screen Width and Height using javaScript
- Examples: Convert String to int in JavaScript
- npm WARN saveError ENOENT: no such file or directory, open /mnt/c/package.json
- Linux Remove or Delete Files and Directories using Terminal Commands - Linux
- reCAPTCHA Implementation Tutorial - CSS
- FCM Messages Test Notification!!!! - Microsoft Teams, Google Hangouts push alert - News
- Find Duplicate Files using Mac Terminal Command - MacOS
- Git: Step-by-Step - How to Push Local Brach to GitHub - Git
- Step by Step: Spring Boot + JPA + MySQL + Redis as Cache - Java
- How to List all Packages installed using pip [Python] - Python
- Install Java Runtime Environment (Oracle or open JRE) on Ubuntu - Linux