Problem In Console Layer. | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 19

Problem In Console Layer.

In New update , Console Layer is hiding My code's last elements . You Can See in My code given below how the last Button is hid by Console . It is happening almost all my codes after New update. Please Comment below If you are Troubling same. https://code.sololearn.com/WUrGAAoJa07c/?ref=app

9th Apr 2017, 5:14 AM
Ayush Shukla
Ayush Shukla - avatar
13 Answers
+ 9
Yes, a console layer is showing even no output is provided inside it... and if logging some things, the layer grow but without cover all screen ^^ ( need to scroll it to see next hidden lines ) We can hope that Sololearn improve his console handler by providing a way to hide/show it, and totally hide it by default since no output is provided inside :P Maybe if someone suggest it to them more directly than in a post in Q&A discussions will be more efficient ;)
9th Apr 2017, 6:35 AM
visph
visph - avatar
+ 21
@Burey Did you update SoloLearn App? It is happening in new update.
9th Apr 2017, 5:40 AM
Ayush Shukla
Ayush Shukla - avatar
+ 20
😱😱Wow 😱😱 . Really. It is a problem or Any Other thing. I can't explain. 😬😟😟
9th Apr 2017, 6:19 AM
Ayush Shukla
Ayush Shukla - avatar
+ 18
Thanks Krishna Sir .It helps Now :)
9th Apr 2017, 5:39 AM
Ayush Shukla
Ayush Shukla - avatar
+ 16
Because Now I put <br/> tag 3 times in the last . So code is got up now.Same in Krishna's code.
9th Apr 2017, 5:51 AM
Ayush Shukla
Ayush Shukla - avatar
+ 8
That's why I put <br><br><br> at the end of my Hello World code. https://code.sololearn.com/W9xE6SoiJjyl/?ref=app
9th Apr 2017, 5:35 AM
Krishna Teja Yeluripati
Krishna Teja Yeluripati - avatar
+ 6
no console log for me galaxy s5 android 6.0.1
9th Apr 2017, 5:32 AM
Burey
Burey - avatar
+ 5
Yeah that's really a problem. I agree.
9th Apr 2017, 5:24 AM
Ashwani Kumar
Ashwani Kumar - avatar
+ 5
yup i am in updated SoloLearn no console log on your code and none on Krishna's
9th Apr 2017, 5:45 AM
Burey
Burey - avatar
+ 5
unrelated to <br /> tags @Ayush console log does not appear for me at your code at all on other codes it does....but not on yours or on Krishna's also removed those <br /> tags and still no console
9th Apr 2017, 5:53 AM
Burey
Burey - avatar
+ 3
thank you 😀
11th Jan 2018, 9:43 PM
Claude Dumont
Claude Dumont - avatar
+ 2
@Claude Dumont: In browsers (not in app'), you encounter this problem only if you try to output undefined without casting to string: in app' and in real console (in codeplayground website console output is bypassed and displayed as html content), such output is correctly displayed, but in codeplayground browser context, you need to explicitly (or half-explicitly) cast such undefined as string: var test; console.log(test); // no output console.log(String(test)); // 'undefined' console.log(''+test); // 'undefined' Obviously, don't try to use .toString() method, as undefined variable doesn't have any ^^
11th Jan 2018, 8:33 PM
visph
visph - avatar
+ 1
galaxy s7 with chrome: not all the results are displayed. undefined not displayed...
11th Jan 2018, 8:18 PM
Claude Dumont
Claude Dumont - avatar