+ 2
can i create external java script in my phone?
If yes means,then how can I done it. Please tell me a instructions for that...
12 Antworten
+ 3
Yogeshwaran no problem. You can type codes in notes. And copy all text in notes and paste in js menu (tab) on playground
+ 3
AZHAGESAN (Call Me Alex) ok bro😂👍
+ 2
Yes. You can. Open notes and type your code but you need to change extension as js.. Refer these lessons for more information
https://www.sololearn.com/learn/JavaScript/1206/
+ 2
In Which text editor sololearn ?
+ 2
Ananaya Jemberu no.
i want to create a external script in my phone and to implement in my code(in sololearn app).
In my phone there no text editor...
but I have notes.....
Notes is same as text editor.is n't?
+ 2
AZHAGESAN (Call Me Alex) I have no notepad or text editor in my phone.
I have only notes.... In my phone.
+ 2
No you can't sololearn does not support external js or any programming language
May be another text editor for your phone
+ 2
Ananaya Jemberu but I inspect some others code .
They use the external JavaScript file on their code.
+ 2
I think You are asking me can I create js file in file manager and open with sololearn
Or
Link the HTML with external js which is available in sololearn playground
+ 2
Yes Ananaya Jemberu .I want to create external JavaScript (js file) in my phone via file manager
And open with sololearn
+ 2
Yeah, you can't sololearn will not open
+ 1
Depends on the format you're aiming for. Given you're asking for js i suppose you're trying to do an web app. In that case you could probably write the js script in any editor you prefere using than upload it to a domain as file ( in other words publish it, lets say on github) and reference it in the head tag in a script tag.
Should do the job very much like referencing a cdn(content delivery network)
e.g. jquery
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
Correct me if thats wrong