JSFiddle - React, Tailwind, and code Playground

HTML

<div ng-app="myapp" ng-controller='myctrl'>
    <ul class="ul-list-10">
     <li ng-repeat="assetType in assetTypeList">
          <input type="checkbox" ng-model="assetType.checked" ng-click="fnChangeAssetType(assetType)" value="{{assetType.id}}" />
         {{assetType.id}}
     </li>
 </ul>
    </div>

JavaScript

var app = angular.module('myapp',[]);
app.controller('myctrl',function($scope){
 $scope.assetTypeList=[{id:1,checked:false},{id:2,checked:false},{id:3,checked:false},{id:4,checked:false}];
    $scope.fnChangeAssetType=function(val){
        debugger;
      alert(val.id);
    }
});