the variable twitter_username resolves to either a username or null.
{{twitter_username}?<p>@{twitter_username}</p>:null}
I want this to display @username if there is a username or nothing at all if the value is null. If there is a username it displays fine but if the return is null I get an @ instead of nothing.
{{twitter_username}?<p>{twitter_username}</p>:null}
this code returns the username if there is a username and is blank when there is none.