MOTOSHARE 🚗🏍️
Turning Idle Vehicles into Shared Rides & Earnings

From Idle to Income. From Parked to Purpose.
Earn by Sharing, Ride by Renting.
Where Owners Earn, Riders Move.
Owners Earn. Riders Move. Motoshare Connects.

With Motoshare, every parked vehicle finds a purpose. Owners earn. Renters ride.
🚀 Everyone wins.

Start Your Journey with Motoshare

Initializing Variables in Javascript

Types of Initializing Variable var roll;roll = 101; var roll = 101; roll = 101; var name;name = “devopsschool.com”; var name = “devopsschool.com”; name = “devopsschool.com”; price = 125.36;Initializing Variable var price = 125.36; price = 125.36; Whatever happens, is optional so only you roll = 101; can also write. Var is not necessary but … Read more

Variables in Javascript with Rules

Variables A variable is an identifier or a name which is used to refer a value. A variable is written with a combination of letters, numbers and special characters _ (underscore) and $ (dollar) with the first letter being an alphabet. Ex- c, fact, b33, total_amount etc. Rules • Variable can contain combination of letters, … Read more