How to pass a value

How to pass a value

Hi
  1.  var Id;

  2. $('.btn.btn-danger').on('click', function () {
  3.         var Id = $(this).data('id');
  4.         // Here Id value is correct and i want to pass this value below click function
  5. });


  6.     
  7.  $("#deleteConfirmModal").on('click', "#deleteConfirm", function () {
  8.         Id = Id;
  9.        // Here it is showing undefined
  10.        $.ajax({
  11.             url: '/test/Delete',
  12.             data: { 'id': Id },
  13.             type: 'POST',
  14.             dataType: 'json',
  15.             //data: xsrf,
  16.             //cache: false,
  17.             success: function (result) {
  18.                 
  19.                 }
  20.             }
  21.         });
  22.         return false;
  23.     });