<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic JavaScript Connector handling null values in Workato Pros Discussion Board</title>
    <link>https://systematic.workato.com/t5/workato-pros-discussion-board/javascript-connector-handling-null-values/m-p/4018#M1855</link>
    <description>&lt;P&gt;Has anyone had luck handling null values in a JavaScript Connector? I have tried all these below but the error remains "&lt;SPAN&gt;Cannot read properties of null (reading 'regulation')"&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;regulation = arrayValue.regulation&lt;BR /&gt;regulation = arrayValue.regulation || 0&lt;BR /&gt;regulation = arrayValue[0].regulation || 0&lt;BR /&gt;if(arrayValue.regulation === null){regulation = "null"} else {regulation = arrayValue.regulation}&lt;BR /&gt;if(arrayValue.regulation != null){regulation = arrayValue.regulation} else {regulation = "null"}&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 08 Mar 2023 15:59:50 GMT</pubDate>
    <dc:creator>jharrison</dc:creator>
    <dc:date>2023-03-08T15:59:50Z</dc:date>
    <item>
      <title>JavaScript Connector handling null values</title>
      <link>https://systematic.workato.com/t5/workato-pros-discussion-board/javascript-connector-handling-null-values/m-p/4018#M1855</link>
      <description>&lt;P&gt;Has anyone had luck handling null values in a JavaScript Connector? I have tried all these below but the error remains "&lt;SPAN&gt;Cannot read properties of null (reading 'regulation')"&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;regulation = arrayValue.regulation&lt;BR /&gt;regulation = arrayValue.regulation || 0&lt;BR /&gt;regulation = arrayValue[0].regulation || 0&lt;BR /&gt;if(arrayValue.regulation === null){regulation = "null"} else {regulation = arrayValue.regulation}&lt;BR /&gt;if(arrayValue.regulation != null){regulation = arrayValue.regulation} else {regulation = "null"}&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 08 Mar 2023 15:59:50 GMT</pubDate>
      <guid>https://systematic.workato.com/t5/workato-pros-discussion-board/javascript-connector-handling-null-values/m-p/4018#M1855</guid>
      <dc:creator>jharrison</dc:creator>
      <dc:date>2023-03-08T15:59:50Z</dc:date>
    </item>
    <item>
      <title>Re: JavaScript Connector handling null values</title>
      <link>https://systematic.workato.com/t5/workato-pros-discussion-board/javascript-connector-handling-null-values/m-p/4019#M1856</link>
      <description>&lt;P&gt;Can you share more of the script? After you define "regulation", what are you doing with it?&lt;/P&gt;</description>
      <pubDate>Wed, 08 Mar 2023 17:45:28 GMT</pubDate>
      <guid>https://systematic.workato.com/t5/workato-pros-discussion-board/javascript-connector-handling-null-values/m-p/4019#M1856</guid>
      <dc:creator>gary1</dc:creator>
      <dc:date>2023-03-08T17:45:28Z</dc:date>
    </item>
    <item>
      <title>Re: JavaScript Connector handling null values</title>
      <link>https://systematic.workato.com/t5/workato-pros-discussion-board/javascript-connector-handling-null-values/m-p/4020#M1857</link>
      <description>&lt;P&gt;&lt;A href="https://www.workato.com/product-hub/semi-structured-data-tamed-with-javascript/" target="_blank"&gt;https://www.workato.com/product-hub/semi-structured-data-tamed-with-javascript/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;I am following this article on&amp;nbsp;Semi-structured data tamed with JavaScript&lt;/P&gt;&lt;P&gt;Below is the JS note my attempts are all commented with errors noted at end. If I comment out the nested array part if works great.&lt;/P&gt;&lt;P&gt;const createRecord = (employee) =&amp;gt; {&lt;BR /&gt;row = {}&lt;BR /&gt;&lt;BR /&gt;// Map top level fields - simple&lt;BR /&gt;row.FirstName = employee.FirstName&lt;BR /&gt;row.LastName = employee.LastName&lt;BR /&gt;row.EmployeeId = employee.EmployeeId&lt;BR /&gt;&lt;BR /&gt;// Map name - nested array&lt;BR /&gt;const Status = employee.Status&lt;BR /&gt;row.regulation = employee.Status.Regulation&lt;BR /&gt;//let reg = "reg"&lt;BR /&gt;//row.regulation = Status.regulation&lt;BR /&gt;//row.reg = Status.regulation || "null" //Cannot read properties of null (reading 'regulation')&lt;BR /&gt;//regulation = if(Status.regulation === null){"null"}else {Status.regulation}&lt;BR /&gt;//row.regulation = Status[0].regulation || 0&lt;BR /&gt;//if(Status.regulation === null){row.regulation = "null"} else {row.regulation = Status.regulation}&lt;BR /&gt;//if(Status.regulation !== null){row.regulation = "null"} else {row.regulation = Status.regulation}&lt;BR /&gt;//if(Status.regulation.length === 0){row.regulation = "null"} else {row.regulation = Status.regulation}&lt;BR /&gt;//if(Status[0].length === 0){row.regulation = "null"} else {row.regulation = Status.regulation} Cannot read properties of undefined (reading 'length')&lt;/P&gt;&lt;P&gt;return row&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;exports.main = ({ input_json }) =&amp;gt; {&lt;BR /&gt;const input = JSON.parse(input_json)&lt;BR /&gt;const rows = []&lt;BR /&gt;input.forEach(employee =&amp;gt; {&lt;BR /&gt;rows.push(createRecord(employee))&lt;BR /&gt;})&lt;BR /&gt;return {rows: rows}&lt;BR /&gt;}&lt;/P&gt;</description>
      <pubDate>Wed, 08 Mar 2023 17:54:13 GMT</pubDate>
      <guid>https://systematic.workato.com/t5/workato-pros-discussion-board/javascript-connector-handling-null-values/m-p/4020#M1857</guid>
      <dc:creator>jharrison</dc:creator>
      <dc:date>2023-03-08T17:54:13Z</dc:date>
    </item>
    <item>
      <title>Re: JavaScript Connector handling null values</title>
      <link>https://systematic.workato.com/t5/workato-pros-discussion-board/javascript-connector-handling-null-values/m-p/4021#M1858</link>
      <description>&lt;P&gt;Is this an accurate representation of input_json? Not sure if Status is an object or an array.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;PRE&gt;[{&lt;BR /&gt;  "FirstName": "Spider",&lt;BR /&gt;  "LastName": "Man",&lt;BR /&gt;  "EmployeeId": "123",&lt;BR /&gt;  "Status": {&lt;BR /&gt;    "Regulation": null&lt;BR /&gt;  }&lt;BR /&gt;}]&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 08 Mar 2023 18:23:30 GMT</pubDate>
      <guid>https://systematic.workato.com/t5/workato-pros-discussion-board/javascript-connector-handling-null-values/m-p/4021#M1858</guid>
      <dc:creator>gary1</dc:creator>
      <dc:date>2023-03-08T18:23:30Z</dc:date>
    </item>
    <item>
      <title>Re: JavaScript Connector handling null values</title>
      <link>https://systematic.workato.com/t5/workato-pros-discussion-board/javascript-connector-handling-null-values/m-p/4022#M1859</link>
      <description>&lt;P&gt;Here is the Schema&lt;/P&gt;&lt;P&gt;[&lt;BR /&gt;{&lt;BR /&gt;"LastName": "",&lt;BR /&gt;"FirstName": "",&lt;BR /&gt;"Status": [&lt;BR /&gt;{&lt;BR /&gt;"Regulation": ""&lt;BR /&gt;}&lt;BR /&gt;]&lt;BR /&gt;}&lt;BR /&gt;]&lt;/P&gt;</description>
      <pubDate>Wed, 08 Mar 2023 19:07:59 GMT</pubDate>
      <guid>https://systematic.workato.com/t5/workato-pros-discussion-board/javascript-connector-handling-null-values/m-p/4022#M1859</guid>
      <dc:creator>jharrison</dc:creator>
      <dc:date>2023-03-08T19:07:59Z</dc:date>
    </item>
    <item>
      <title>Re: JavaScript Connector handling null values</title>
      <link>https://systematic.workato.com/t5/workato-pros-discussion-board/javascript-connector-handling-null-values/m-p/4023#M1860</link>
      <description>&lt;P&gt;Yes, minus a couple square brackets [].&lt;/P&gt;&lt;P&gt;[{&lt;BR /&gt;"LastName": "",&lt;BR /&gt;"FirstName": "",&lt;BR /&gt;"Message": null,&lt;BR /&gt;"Status": [&lt;BR /&gt;{&lt;BR /&gt;"Regulation": ""&lt;BR /&gt;}&lt;BR /&gt;]&lt;BR /&gt;}]&lt;/P&gt;</description>
      <pubDate>Wed, 08 Mar 2023 19:09:53 GMT</pubDate>
      <guid>https://systematic.workato.com/t5/workato-pros-discussion-board/javascript-connector-handling-null-values/m-p/4023#M1860</guid>
      <dc:creator>jharrison</dc:creator>
      <dc:date>2023-03-08T19:09:53Z</dc:date>
    </item>
    <item>
      <title>Re: JavaScript Connector handling null values</title>
      <link>https://systematic.workato.com/t5/workato-pros-discussion-board/javascript-connector-handling-null-values/m-p/4030#M1861</link>
      <description>&lt;P&gt;Using that exact array as input, this script works fine on my end (I really didn't make any changes).&lt;/P&gt;&lt;P&gt;Is Regulation always present in the first index of the Status array? If not, then you may need to loop through Status to find an object with Regulation.&lt;/P&gt;&lt;P&gt;Either way though, I'm not getting any errors when the value is present, blank, or null.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;PRE&gt;const createRecord = (employee) =&amp;gt; {&lt;BR /&gt;row = {}&lt;BR /&gt;// Map top level fields - simple&lt;BR /&gt;row.FirstName = employee.FirstName&lt;BR /&gt;row.LastName = employee.LastName&lt;BR /&gt;row.EmployeeId = employee.EmployeeId&lt;BR /&gt;// Map name - nested array&lt;BR /&gt;row.regulation = employee.Status[0].Regulation&lt;BR /&gt;return row&lt;BR /&gt;}&lt;BR /&gt;&lt;BR /&gt;exports.main = ({input_json}) =&amp;gt; {&lt;BR /&gt;const input = JSON.parse(input_json)&lt;BR /&gt;const rows = []&lt;BR /&gt;input.forEach(employee =&amp;gt; {&lt;BR /&gt;rows.push(createRecord(employee))&lt;BR /&gt;})&lt;BR /&gt;return {&lt;BR /&gt;rows: rows&lt;BR /&gt;}&lt;BR /&gt;}&lt;/PRE&gt;&lt;P&gt;1. Input with blanks&lt;/P&gt;&lt;PRE&gt;[{&lt;BR /&gt;"LastName": "",&lt;BR /&gt;"FirstName": "",&lt;BR /&gt;"Status": [{&lt;BR /&gt;"Regulation": ""&lt;BR /&gt;}]&lt;BR /&gt;}]&amp;nbsp;&lt;/PRE&gt;&lt;P&gt;Output:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="gary1_0-1678302725859.png" style="width: 400px;"&gt;&lt;img src="https://systematic.workato.com/t5/image/serverpage/image-id/256i92888F3C3BF3033E/image-size/medium/is-moderation-mode/true?v=v2&amp;amp;px=400" role="button" title="gary1_0-1678302725859.png" alt="gary1_0-1678302725859.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;2. Input with nulls:&lt;/P&gt;&lt;PRE&gt;[{&lt;BR /&gt;"LastName": null,&lt;BR /&gt;"FirstName": null,&lt;BR /&gt;"Status": [{&lt;BR /&gt;"Regulation": null&lt;BR /&gt;}]&lt;BR /&gt;}]&lt;/PRE&gt;&lt;P&gt;Output:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="gary1_4-1678303010103.png" style="width: 400px;"&gt;&lt;img src="https://systematic.workato.com/t5/image/serverpage/image-id/260iE7D33F775B0AB12F/image-size/medium/is-moderation-mode/true?v=v2&amp;amp;px=400" role="button" title="gary1_4-1678303010103.png" alt="gary1_4-1678303010103.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;3. Input with values:&lt;/P&gt;&lt;PRE&gt;[{&lt;BR /&gt;"FirstName": "Spider",&lt;BR /&gt;"LastName": "Man",&lt;BR /&gt;"EmployeeId": "123",&lt;BR /&gt;"Status": [{&lt;BR /&gt;"Regulation": test&lt;BR /&gt;}]&lt;BR /&gt;}]&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;Output:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="gary1_3-1678302836966.png" style="width: 400px;"&gt;&lt;img src="https://systematic.workato.com/t5/image/serverpage/image-id/259iB1F284CABD8ED45E/image-size/medium/is-moderation-mode/true?v=v2&amp;amp;px=400" role="button" title="gary1_3-1678302836966.png" alt="gary1_3-1678302836966.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;4. Input with an empty object leading the Status array:&lt;/P&gt;&lt;PRE&gt;[{&lt;BR /&gt;"FirstName": "Spider",&lt;BR /&gt;"LastName": "Man",&lt;BR /&gt;"EmployeeId": "123",&lt;BR /&gt;"Status": [{},{&lt;BR /&gt;"Regulation": "test"&lt;BR /&gt;}]&lt;BR /&gt;}]&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;Output:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="gary1_5-1678303203518.png" style="width: 400px;"&gt;&lt;img src="https://systematic.workato.com/t5/image/serverpage/image-id/261i04DD23EB41C12131/image-size/medium/is-moderation-mode/true?v=v2&amp;amp;px=400" role="button" title="gary1_5-1678303203518.png" alt="gary1_5-1678303203518.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 08 Mar 2023 19:21:33 GMT</pubDate>
      <guid>https://systematic.workato.com/t5/workato-pros-discussion-board/javascript-connector-handling-null-values/m-p/4030#M1861</guid>
      <dc:creator>gary1</dc:creator>
      <dc:date>2023-03-08T19:21:33Z</dc:date>
    </item>
    <item>
      <title>Re: JavaScript Connector handling null values</title>
      <link>https://systematic.workato.com/t5/workato-pros-discussion-board/javascript-connector-handling-null-values/m-p/4031#M1862</link>
      <description>&lt;P&gt;Hi Gary1,&lt;/P&gt;&lt;P&gt;Well that is annoying!&lt;/P&gt;&lt;P&gt;I tried the index suggestion and it gave me a Regulation undefined error. So at least it's not a null.&lt;/P&gt;&lt;P&gt;I've given up for now.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for your assistance&lt;/P&gt;&lt;P&gt;Jim&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 08 Mar 2023 20:23:13 GMT</pubDate>
      <guid>https://systematic.workato.com/t5/workato-pros-discussion-board/javascript-connector-handling-null-values/m-p/4031#M1862</guid>
      <dc:creator>jharrison</dc:creator>
      <dc:date>2023-03-08T20:23:13Z</dc:date>
    </item>
    <item>
      <title>Re: JavaScript Connector handling null values</title>
      <link>https://systematic.workato.com/t5/workato-pros-discussion-board/javascript-connector-handling-null-values/m-p/4032#M1863</link>
      <description>&lt;P&gt;Very weird! Even if you copy/paste my exact script it still throws the error? If that's the case, there must be something up with the input.&lt;/P&gt;</description>
      <pubDate>Thu, 09 Mar 2023 02:32:57 GMT</pubDate>
      <guid>https://systematic.workato.com/t5/workato-pros-discussion-board/javascript-connector-handling-null-values/m-p/4032#M1863</guid>
      <dc:creator>gary1</dc:creator>
      <dc:date>2023-03-09T02:32:57Z</dc:date>
    </item>
    <item>
      <title>Re: JavaScript Connector handling null values</title>
      <link>https://systematic.workato.com/t5/workato-pros-discussion-board/javascript-connector-handling-null-values/m-p/4033#M1864</link>
      <description>&lt;P&gt;Hi Gary1,&lt;/P&gt;&lt;P&gt;For fun I tried the copy and paste and the error changed to "&lt;SPAN&gt;Cannot read properties of undefined (reading 'Regulation')".&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I think the input is the problem as well. The input JSON has forward slashes in front of all the quotes. I am attempting to get them removed. &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I resorted to a different solution, I nested two for loops and got that to work. I feel like the JS may be more efficient over the for loops, which is why I wanted to try to get it to work.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;If I get the JSON cleaned up, I'll try this recipe again and see if the JS solution works. I have it saved.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Regards,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Jim Harrison&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Portland, OR&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 09 Mar 2023 20:12:56 GMT</pubDate>
      <guid>https://systematic.workato.com/t5/workato-pros-discussion-board/javascript-connector-handling-null-values/m-p/4033#M1864</guid>
      <dc:creator>jharrison</dc:creator>
      <dc:date>2023-03-09T20:12:56Z</dc:date>
    </item>
    <item>
      <title>Re: JavaScript Connector handling null values</title>
      <link>https://systematic.workato.com/t5/workato-pros-discussion-board/javascript-connector-handling-null-values/m-p/4034#M1865</link>
      <description>&lt;P&gt;Ah, is the entire input_json escaped with slashes, or only the Status array? Or is it the data in the Status array?&lt;/P&gt;&lt;P&gt;Chances are you probably only need to run one of the above through JSON.parse again. This is all guesswork without seeing the recipe and the payload, but it might be worth a quick try.&lt;/P&gt;&lt;P&gt;Any chance you can share a redacted screenshot or copy/paste of the input_json?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;const createRecord = (employee) =&amp;gt; {&lt;BR /&gt;row = {}&lt;BR /&gt;// Map top level fields - simple&lt;BR /&gt;row.FirstName = employee.FirstName&lt;BR /&gt;row.LastName = employee.LastName&lt;BR /&gt;row.EmployeeId = employee.EmployeeId&lt;BR /&gt;// Map name - nested array&lt;BR /&gt;&lt;BR /&gt;// ====== UPDATES HERE ====== &lt;BR /&gt;//try this first&lt;BR /&gt;row.regulation = JSON.parse(employee.Status)[0].Regulation&lt;BR /&gt;//maybe try this is the above doesn't work&lt;BR /&gt;//row.regulation = JSON.parse(employee.Status[0]).Regulation&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;return row&lt;BR /&gt;}&lt;BR /&gt;&lt;BR /&gt;exports.main = ({input_json}) =&amp;gt; {&lt;BR /&gt;const input = JSON.parse(input_json)&lt;BR /&gt;const rows = []&lt;BR /&gt;input.forEach(employee =&amp;gt; {&lt;BR /&gt;rows.push(createRecord(employee))&lt;BR /&gt;})&lt;BR /&gt;return {&lt;BR /&gt;rows: rows&lt;BR /&gt;}&lt;BR /&gt;}&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 09 Mar 2023 20:22:09 GMT</pubDate>
      <guid>https://systematic.workato.com/t5/workato-pros-discussion-board/javascript-connector-handling-null-values/m-p/4034#M1865</guid>
      <dc:creator>gary1</dc:creator>
      <dc:date>2023-03-09T20:22:09Z</dc:date>
    </item>
    <item>
      <title>Re: JavaScript Connector handling null values</title>
      <link>https://systematic.workato.com/t5/workato-pros-discussion-board/javascript-connector-handling-null-values/m-p/4047#M1868</link>
      <description>&lt;P&gt;Found it! The JSON had spacing that was different than the sample file I was using. I realized that all these attempts at finding the correct path to the key were where I needed to focus. So I went back and looked more closely at the parse JSON Output and noticed the spaces in the Output that I had not placed in the sample document of JSON parse, which is why it kept resulting in 'undefined'. Added the spacing and it worked.&lt;/P&gt;&lt;P&gt;Thanks for your help&lt;/P&gt;&lt;P&gt;Jim&lt;/P&gt;</description>
      <pubDate>Mon, 13 Mar 2023 13:44:25 GMT</pubDate>
      <guid>https://systematic.workato.com/t5/workato-pros-discussion-board/javascript-connector-handling-null-values/m-p/4047#M1868</guid>
      <dc:creator>jharrison</dc:creator>
      <dc:date>2023-03-13T13:44:25Z</dc:date>
    </item>
    <item>
      <title>Re: JavaScript Connector handling null values</title>
      <link>https://systematic.workato.com/t5/workato-pros-discussion-board/javascript-connector-handling-null-values/m-p/4049#M1869</link>
      <description>&lt;P&gt;Hey Jim,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here are a couple threads that might be helpful!&amp;nbsp;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;
&lt;P class="p1"&gt;&lt;A href="https://systematic.workato.com/t5/workato-pros-discussion-board/data-transformation-using-javascript-connector/m-p/3317" target="_blank" rel="noopener"&gt;https://systematic.workato.com/t5/workato-pros-discussion-board/data-transformation-using-javascript-connector/m-p/3317&lt;/A&gt;&lt;/P&gt;
&lt;/LI&gt;
&lt;LI&gt;
&lt;P class="p1"&gt;&lt;SPAN&gt;&lt;A href="https://systematic.workato.com/t5/workato-pros-faqs/faqs-community-connectors/ta-p/3782" target="_blank"&gt;https://systematic.workato.com/t5/workato-pros-faqs/faqs-community-connectors/ta-p/3782&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&lt;SPAN&gt;Cheers,&lt;BR /&gt;Mary&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 13 Mar 2023 17:18:38 GMT</pubDate>
      <guid>https://systematic.workato.com/t5/workato-pros-discussion-board/javascript-connector-handling-null-values/m-p/4049#M1869</guid>
      <dc:creator>maryhodges</dc:creator>
      <dc:date>2023-03-13T17:18:38Z</dc:date>
    </item>
  </channel>
</rss>

