JSFiddle - React, Tailwind, and code Playground

by chandings

JavaScript

function add(a,b=0){
	return a+b;
}

function rahul(){
	var num = 1;
  var sum = 0;
  while(num < 101){
  	sum += num;
    num++;
  }
}

rahul();