Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found

All comments

  • Kamilā€¢ 260

    @Wuczek

    Submitted

    Hi there šŸ‘‹, Iā€™m Kamil and this is my solution for this challenge. šŸ™‚

    šŸ› ļø Built With:

    • Vite
    • vanilla HTML/CSS/JS
    • npm - prettier

    Any suggestions on how I can improve and reduce unnecessary code are welcome!

    Thank you. šŸ˜ŠāœŒļø

    Deepanshu Heerā€¢ 230

    @deep0133

    Posted

    Hey there, I noticed that the project's appearance could be improved on smaller screens, particularly those below 360px. To optimize the user experience on such screens, consider adding the following styles to the body: body { /* ... previous styles */ min-width: 360px; overflow: auto; }

    1
  • Deepanshu Heerā€¢ 230

    @deep0133

    Posted

    Hey šŸ‘‹ There is an bug or issue. When I try to open it on small device and clicking on any planet it show 'PAGE NOT FOUND'. But it is working on desktop. Small changes may be required to resolve this..I am not able to understand typescript code otherwise I would try to help you to solve it.

    Marked as helpful

    0
  • Ricā€¢ 210

    @Ripra87

    Submitted

    This was an hard challenge, there is still some bugs but it works good and without problems. If you can check my code, especially the JS, i would be really happy to receive some advice! it was my first intermediate level challenge, and i'm surely made many mistakes, i look forward to receive every suggestion! Happy coding!

    Deepanshu Heerā€¢ 230

    @deep0133

    Posted

    Okay, it is my fault for not noticing the eval method in the code. You can forget the fourth point.

    0
  • Ricā€¢ 210

    @Ripra87

    Submitted

    This was an hard challenge, there is still some bugs but it works good and without problems. If you can check my code, especially the JS, i would be really happy to receive some advice! it was my first intermediate level challenge, and i'm surely made many mistakes, i look forward to receive every suggestion! Happy coding!

    Deepanshu Heerā€¢ 230

    @deep0133

    Posted

    Problem:

    1. Result Area Overflow if number Length>16
    2. when I enter (12/0.1 ) it give correct output (120) but after it if I press del key for clear screen and repeat the calculation then it concatenate the new output with previous output. eg - after clear the screen by del key : 12/0.1 => output: 120120. Solution:
    3. style : overflow: auto;
    4. use [eval] method for calculating the result. eg - eval("input_string")
    1