Get parameters with their type from SET node

hi, i have set node and after that i have function node, in the set node i have 3 props
1 boolean true
2 number 55
3 string blabla
i want in function node to use javascript to get all the props from set node and also to get their type
how can I do that?

thanks

It looks like your topic is missing some important information. Could you provide the following if applicable.

  • n8n version:
  • Database (default: SQLite):
  • n8n EXECUTIONS_PROCESS setting (default: own, main):
  • Running n8n via (Docker, npm, n8n cloud, desktop app):
  • Operating system:

1.4.0
SQLite
main
npm
windows server 2019

i use typeof in js
for (const item in items[0].json) {
console.log(typeof(items[0].json[item]))
}

Hi @Asaf_Shay

Not sure what you are trying to do here.
Could you give an example of the workflow and data with an expected output of this data?