Skip to content
Advertisement

How would I go about turning JavaScript into Java? [closed]

I would like to use the following code in Android studio, instead of via a web browser. However, I am having trouble converting javascript into java. Particularly the first variable that defines several other variables below. I would appreciate assistance. This is the beginning of an idle game.

main.js

JavaScript

index.html

JavaScript

idlescreen.css

JavaScript

Advertisement

Answer

Particularly the first variable that defines several other variables below. I would appreciate assistance.

One solution is to create a class named GameData with publicly accessible static variables:

JavaScript

Now you can access these variables using the dot notation: GameData.points.

However, I should specify that this is not idiomatic Java. An idiomatic solution would create a class named GameData and then instantiate objects of that class using the new keyword.

User contributions licensed under: CC BY-SA
7 People found this is helpful
Advertisement