ajax는 비동기방식이기때문에 기본적으로 값을 얻을수 없다
하지만
function showdelivery(num,company) {
let test = ''
$.ajax({
type: "GET",
url: "",
async: false,
data: {},
success: function (response) {
test = response['test']
console.log(test)
}
})
return test
}
async: false를 추가 return 값을 받아낼수 있다.