What is the value of the PI constant. | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

What is the value of the PI constant.

The qustion is putting ㅡ(ㅡ.ㅡ); and putting words in ㅡ between alert PI print Math const

13th Mar 2019, 12:16 PM
Na Young Ku
Na Young Ku - avatar
3 Answers
+ 6
after the challenge, you can view the answer to every question, its not really advised to ask challenge questions in Q&A
13th Mar 2019, 1:21 PM
᠌᠌Brains[Abidemi]
᠌᠌Brains[Abidemi] - avatar
+ 2
π=3.14285714...
14th Mar 2019, 3:19 AM
Codebeast**
Codebeast** - avatar
+ 1
Javascript: <!DOCTYPE html> <html> <body> <p>Click the button to display PI.</p> <button onclick="myFunction()">Try it</button> <p id="demo"></p> <script> function myFunction() { document.getElementById("demo").innerHTML = Math.PI; } </script> </body> </html>
13th Mar 2019, 1:20 PM
Kelvin Kaloki Muema
Kelvin Kaloki Muema - avatar