From 429a2a8438d60665ce3fa3962cb5b40aca591b84 Mon Sep 17 00:00:00 2001 From: wapz-lang <55187906+wapz-lang@users.noreply.github.com> Date: Wed, 11 Sep 2019 04:10:44 -0700 Subject: [PATCH] to make easily --- how to make string | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 how to make string diff --git a/how to make string b/how to make string new file mode 100644 index 00000000..16da5a2e --- /dev/null +++ b/how to make string @@ -0,0 +1,23 @@ +[By string literal] + +var stringname="string value"; + + + +>> This is string literal + +---------- + +[By string object] + +var stringname=new String("string literal"); + + + +>> hello javascript string