How to view my saved code? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

How to view my saved code?

So after saving code i have written in the code playground, and closing the app, where do i find that code again to edit it after reopening the app?

1st Oct 2016, 7:36 AM
Petras
7 Answers
+ 3
go to Code Playground - > My Codes (tab)
1st Oct 2016, 8:49 AM
Oliver Brown
Oliver Brown - avatar
+ 2
Click on most recent and there is my code or smth.
2nd Oct 2016, 10:17 AM
Вилиан Василев
Вилиан Василев - avatar
+ 2
Press the "{}" tab, which is at the right of the "home" tab. At the search bar, there will be a dropdown list (which will be set to "Hot Today" by default), from which, you select "My Codes".
19th Jun 2019, 7:34 AM
Arkajyoti Chakrabarti
Arkajyoti Chakrabarti - avatar
0
When i click the Code playground it only shows me popular code, and the button to create new code...
1st Oct 2016, 8:23 PM
Petras
0
<!DOCTYPE html> <html> <head> <title>Permainan Menembak</title> <style> body { text-align: center; padding-top: 100px; font-family: Arial, sans-serif; } #gameArea { width: 400px; height: 300px; margin: 0 auto; border: 1px solid black; position: relative; } #target { width: 30px; height: 30px; background-color: red; border-radius: 50%; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); cursor: pointer; } #score { margin-top: 20px; } </style> </head> <body> <h1>Permainan Menembak</h1> <div id="gameArea"> <div id="target"></div> </div> <p id="score">Skor: 0</p> <script> var score = 0; document.getElementById("target").addEventListener("click", function() { score++; document.getElementById("score").innerHTML = "Skor: " + score; moveTarget(); }); function moveTarget(
12th Jun 2023, 6:22 AM
Akun cadangan Cadangan
Akun cadangan Cadangan - avatar
0
ashutosh.html
17th Sep 2023, 7:48 PM
Ashutosh kumar Gond
Ashutosh kumar Gond - avatar
- 1
Divya.html
30th Oct 2021, 1:36 PM
Divya Jonas
Divya Jonas - avatar