Skip to content

Commit 646f5b8

Browse files
authoredNov 21, 2024
Create Practice.js
1 parent bc68f7e commit 646f5b8

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed
 

‎Practice.js

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
2+
/*var tweet = prompt("Compose your tweet :");
3+
var tweetCount = tweet.length;
4+
alert("You have written" + tweetCount +"Charater , you have "+(140 - tweetCount) + "Charater reamaining ");
5+
6+
var tweet = prompt("Compose tweet");
7+
alert (prompt("Compose your tweet :").slice(0,140));
8+
*/
9+
10+
var name = prompt("What is your name");
11+
alert("Hello " +name);
12+
13+
14+
15+

0 commit comments

Comments
 (0)
Please sign in to comment.