diff --git a/Labmanual/apple.html b/Labmanual/apple.html new file mode 100644 index 0000000..11b11a0 --- /dev/null +++ b/Labmanual/apple.html @@ -0,0 +1,11 @@ + + + + + + Document + + + + + \ No newline at end of file diff --git a/Labmanual/apple.js b/Labmanual/apple.js new file mode 100644 index 0000000..fa47e46 --- /dev/null +++ b/Labmanual/apple.js @@ -0,0 +1,3 @@ +let str = "apple apple"; +let res = str.replaceAll("apple", "orange"); +console.log(res); diff --git a/Labmanual/capi.html b/Labmanual/capi.html new file mode 100644 index 0000000..aec3404 --- /dev/null +++ b/Labmanual/capi.html @@ -0,0 +1,11 @@ + + + + + + Document + + + + + \ No newline at end of file diff --git a/Labmanual/capi.js b/Labmanual/capi.js new file mode 100644 index 0000000..28197d2 --- /dev/null +++ b/Labmanual/capi.js @@ -0,0 +1,13 @@ + +let str = prompt("Enter any string"); + +let result = str.charAt(0).toUpperCase() + str.slice(1).toLowerCase(); + +console.log(result); + + + + + + + diff --git a/Labmanual/revers.js b/Labmanual/revers.js new file mode 100644 index 0000000..33154a4 --- /dev/null +++ b/Labmanual/revers.js @@ -0,0 +1,5 @@ + +let str = "javascript"; +let res = str.split("").reverse().join(""); +console.log(res); + diff --git a/Labmanual/revrse.html b/Labmanual/revrse.html new file mode 100644 index 0000000..a67cbdf --- /dev/null +++ b/Labmanual/revrse.html @@ -0,0 +1,11 @@ + + + + + + Document + + + + + \ No newline at end of file diff --git a/Labmanual/space.html b/Labmanual/space.html new file mode 100644 index 0000000..271647d --- /dev/null +++ b/Labmanual/space.html @@ -0,0 +1,11 @@ + + + + + + Document + + + + + \ No newline at end of file diff --git a/Labmanual/space.js b/Labmanual/space.js new file mode 100644 index 0000000..758654c --- /dev/null +++ b/Labmanual/space.js @@ -0,0 +1,3 @@ +let str = "a b c d"; +let res = str.replaceAll(" ", ""); +console.log(res); diff --git a/Labmanual/vowel1.html b/Labmanual/vowel1.html new file mode 100644 index 0000000..823b309 --- /dev/null +++ b/Labmanual/vowel1.html @@ -0,0 +1,11 @@ + + + + + + Document + + + + + \ No newline at end of file diff --git a/Labmanual/vowel1.js b/Labmanual/vowel1.js new file mode 100644 index 0000000..3b9b435 --- /dev/null +++ b/Labmanual/vowel1.js @@ -0,0 +1,13 @@ + + +let str=prompt("enter any string"); +let count=0; + +console.log(str); + +for(let i=1;i + + + + + Sumit — Full‑Stack Developer + + + + + + +
+ + + + +
+ + +
+
+
+

Hello There!

+

I’m Sumit,
Full‑Stack Developer

+

Based in India. I’m skilled in Java, Web Development, and building innovative projects with modern tools and technologies.

+ + + +
+
App Design
+
Website Design
+
Dashboard
+
Wireframe
+
+
+ +
+
+
+
S
+

Sumit

+

Full‑Stack Developer • India

+
+
+
+
+ + +
+

Expertise

+

Responsive and interactive websites using HTML, CSS, JS, and React. Strong backend solutions and problem-solving using Core Java concepts. Creative and modern UI designs with smooth user experiences.

+ +
+
+

Web Development

+

HTML, CSS, JavaScript, React — build responsive and interactive frontends.

+
+
+

Java Development

+

Core Java, backend concepts, and strong problem-solving abilities.

+
+
+

UI/UX Design

+

Designing clean interfaces and smooth user experiences.

+
+
+
+ + +
+
+

About Me

+

I'm a passionate frontend developer skilled in HTML, CSS, JavaScript, and modern frameworks. I also have a strong foundation in Java and backend concepts. I love creating clean, responsive, and user-friendly web applications.

+ +

Exploring the Tools Behind My Designs

+
    +
  • Tailwind CSS
  • +
  • React / Next.js
  • +
  • Java (Core)
  • +
  • Firebase
  • +
  • Figma
  • +
  • Git & GitHub
  • +
+
+ +
+

About Image

+
Image placeholder
+
+
+ + +
+

Projects

+
+
+

Jubilo

+

Built with Tailwind CSS, React.js, JavaScript, NextJs and Firebase.

+
+
+

IOVS

+

HTML, CSS, Tailwind CSS, JS and React.js.

+
+
+

Razorpay Clone

+

UI design using HTML, CSS and JS.

+
+
+
+ + +
+
+

Contact Me

+

Let's connect! Feel free to reach out for collaborations or job opportunities.

+ +
+ + + + + + +
+ +
+
+
+ +
+

Quick info

+

Email: youremail@example.com

+

Location: India

+ + +
+
+ + +
+
+
+
S
+
+
Sumit
+
Full‑Stack Developer
+
+
+ +
© 2025 Sumit. All rights reserved.
+
+
+
+ + + + diff --git a/New folder/siddarth.jpg b/New folder/siddarth.jpg new file mode 100644 index 0000000..29baf72 Binary files /dev/null and b/New folder/siddarth.jpg differ diff --git a/qsimsir/capital.html b/qsimsir/capital.html new file mode 100644 index 0000000..e69de29 diff --git a/qsimsir/destructure.html b/qsimsir/destructure.html new file mode 100644 index 0000000..97434f0 --- /dev/null +++ b/qsimsir/destructure.html @@ -0,0 +1,12 @@ + + + + + + + Document + + + + + \ No newline at end of file diff --git a/qsimsir/destructure.js b/qsimsir/destructure.js new file mode 100644 index 0000000..287d97c --- /dev/null +++ b/qsimsir/destructure.js @@ -0,0 +1,82 @@ + + +// destrucre of array= accessc Element of array with the help of variable + +// let [name,hight,place]=["sumit",5.6,"Bhopal",23,4,5,6,7,7,8] + +// console.log(name); + + +// destrucre of Object= accessc Element of array with the help of variable + +// let {name,age,place}={ +// name:"sumit", +// age:18, +// place:"bhopal" + +// } + +// console.log(name); + + + +// let ob={ +// name:"sumit", +// age:18, +// place:"bhopal", +// account:{ +// ac_no:2293938383939, +// ac_balance: 1200000000 +// }, +// sum:function(){ +// console.log("hello sid"); +// }, +// arr:[123383,9394440] + +// } + +// console.log(ob.account.ac_balance); +// ob.sum() +// console.log(ob.arr[1]); +// ob.email="sumit793@gamil" +// ob.place="indore" + +// console.log(ob) + +// let ob={ +// name:"sumit", +// age:18, +// place:"bhopal" +// } + +// // // for in loop +// // for(let k in ob){ +// // console.log(k + ":"+ob[k]); +// // } + +// // object method + +// let key=Object.keys(ob) //return key array + +// console.log(key[1]); + +// let value=Object.values(ob); //return value array +// console.log(value[1]); + + +// sprread oprater =use for merge two object in new oprater + +let ob={ + name:"sumit", + age:18, + place:"bhopal" +} +let ac={ + ac: 18144997787, + bl:28392823 +} + +let newob={ + ...ob,...ac +} +console.log(newob); \ No newline at end of file