Here you go:
var style = getComputedStyle(document.getElementsByClassName('dddd')[0], null);
console.log(style.getPropertyValue('transform'));
Change 1:
If you prefer not to add a class, you can change your code as follows:
var style = getComputedStyle(document.querySelector('.starting-point span'), null);
console.log(style.getPropertyValue('transform'));
Edit 2:
, jQuery:
var style = getComputedStyle($('.starting-point span')[0], null);
console.log(style.getPropertyValue('transform'));