Sinisterly
Android Apps that can execute java scripts - Printable Version

+- Sinisterly (https://sinister.ly)
+-- Forum: Coding (https://sinister.ly/Forum-Coding)
+--- Forum: Java, JVM, & JRE (https://sinister.ly/Forum-Java-JVM-JRE)
+--- Thread: Android Apps that can execute java scripts (/Thread-Android-Apps-that-can-execute-java-scripts)



Android Apps that can execute java scripts - Bootlegronin47 - 03-06-2020

function sayHello(name) {
var message = "Hello," + name + "!" ;
return message;
}
console.log(sayHello(Ghost Fangs));

Won't even run on droidedit the frustration is real I just want to make sure I'm doing this right I need the satisfaction that my code isn't hopeless any apks out there that can run this


RE: Android Apps that can execute java scripts - chunky - 03-06-2020

You are missing quotation marks.
Just use jsconsole.com to test your code.


RE: Android Apps that can execute java scripts - Bootlegronin47 - 03-07-2020

(03-06-2020, 12:21 PM)chunky Wrote: You are missing quotation marks.
Just use jsconsole.com to test your code.

I got your quotation mark lulz thank you