Search This Blog

Sunday, August 7, 2022

print Multiplication Table 0 to N Table using Mule4 Dataweave code

 Code: 

%dw 2.0

output application/json

var table=1
---
1 to 10 map(table ++ "*" ++ ($$+1) ++ "=" ++ table * $)


No comments:

Post a Comment