To append your own SVG object in d3.js, you can use the append method along with the svg function. First, you need to select the SVG element where you want to append your object by using the select method. Then, you can call the append method on the selected SVG element, passing in the name of the SVG object you want to append (e.g. "rect", "circle", "path", etc.). Finally, you can set any attributes of your SVG object by chaining the attr method after the append call.