JSFiddle - React, Tailwind, and code Playground

by wiltomap

HTML

<button id="bouton">
TEST
</button>

JavaScript

$('#bouton').click(function(){

	var a = -10;
  var b = -20;
  
	if(!a>0 && b>0){
  	alert('oui');
  }else{
  	alert('non');
  }

});