is using promises lightens the loads to the reques...
# suitescript
s
is using promises lightens the loads to the requests to server compare to without using promises?
b
not really, promises are designed for asynchronous logic
usually that translates to less waiting
for example, instead of waiting for a http request to complete you do something else instead
load is still the same, you just do it at a different time
s
thanks @battk