+ 3
How the answer is 1111?
It's a Challenge question. I have entered correct answer but don't know it came. Can anyone please explain. See the below Screenshot. https://photos.app.goo.gl/EUm84Fbc7mKVbRWt8
6 Respostas
+ 9
Yes AJ, you are right
+ 8
function print() has the default output equals 1
so 1.print(1).1 => 1.11.1 => 1111
+ 7
Vladimir It means print function return 1? So here print(1) will print 1 and echo print will give output 1 so finally output will be 11. Right?