Write javaScript code in Swedish using FikaScript


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
Output
Output


















Copyright © Code2care 2024 | Privacy Policy | About Us | Contact Us | Sitemap