JSFiddle - React, Tailwind, and code Playground

by Andres Abadia

JavaScript

let m1=2
let n2=5
//callme(m1,n2)
a=[2,5]
b=[1,2,3]
a=b
alert(a)
function callme(m,n){
  for(let i=0; i< 10;i++){
  alert(i)
    if (i==m){
    	n=0
			callme(m,n)
      return
    }
    if (i==n){
    	return
    }
  }
  alert(n)
}