Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
String yourString = "" + yourInt; //just simple :))
Integer a = new Integer(1);
String s = (String)a;
int a = new 1;
String s = (String)a;
String yourString = "" + 7;
String yourString = "" + seven;
String yourString = seven.toString ();